From 24b2a63d0c665633f004165b651148b4aefd2b11 Mon Sep 17 00:00:00 2001 From: Thomas Date: Thu, 19 Dec 2024 13:51:16 +0100 Subject: [PATCH 1/5] remove unused function in rpc_service --- src/rpc_service.rs | 44 -------------------------------------------- 1 file changed, 44 deletions(-) diff --git a/src/rpc_service.rs b/src/rpc_service.rs index 5646c7a..3b14738 100644 --- a/src/rpc_service.rs +++ b/src/rpc_service.rs @@ -149,48 +149,4 @@ impl RpcService { } } } - - pub async fn query( - &self, - method_name: String, - block_id: i64, - args_base64: String, - ) -> Result { - let args = json!({ - "request_type": "call_function", - "account_id": self.contract.0.to_string(), - "block_id": block_id, - "method_name": method_name, - "args_base64": args_base64 - }); - - println!("Querying args: {:?}", args); - - let result: Result, _> = self - .contract - .call_function("query", args) - .unwrap() - .read_only() - .fetch_from(&self.network) - .await; - - match result { - Ok(res) => { - // From ascii code to string - let decoded = res - .data - .result - .result - .iter() - .map(|c| *c as u8 as char) - .collect(); - // Should return JSON object? - Ok(decoded) - } - Err(e) => { - eprintln!("Failed to query: {:?}", e); - Err(Status::InternalServerError) - } - } - } } From 58fdaa3010812f37ffdcfa98b04acc196135646e Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 20 Dec 2024 19:09:38 +0100 Subject: [PATCH 2/5] week 1 --- ...53d447b08553afe8b7cba5655aeb2fd30fa87.json | 12 + Cargo.lock | 473 +- Cargo.toml | 3 +- migrations/20241217195849_sputnik.sql | 65 + src/db/db_types.rs | 34 + src/db/mod.rs | 300 +- src/entrypoints/mod.rs | 6 +- src/entrypoints/proposal/mod.rs | 4 +- src/entrypoints/rfp/mod.rs | 4 +- src/entrypoints/sputnik/mod.rs | 144 + src/entrypoints/sputnik/policy.rs | 216 + src/entrypoints/sputnik/sputnik_types.rs | 370 + src/nearblocks_client/inspect.js | 2161 ++ src/nearblocks_client/mod.rs | 1 + src/nearblocks_client/sputnik.json | 2054 ++ src/nearblocks_client/sputnik.rs | 244 + src/nearblocks_client/test.js | 16651 ++++++++++++++++ src/nearblocks_client/transactions.rs | 25 +- src/rpc_service.rs | 167 +- ...ons_testing-astradao.sputnik-dao.near.json | 1 + 20 files changed, 22676 insertions(+), 259 deletions(-) create mode 100644 .sqlx/query-425225f12b56dc21b010bcbd01153d447b08553afe8b7cba5655aeb2fd30fa87.json create mode 100644 migrations/20241217195849_sputnik.sql create mode 100644 src/entrypoints/sputnik/mod.rs create mode 100644 src/entrypoints/sputnik/policy.rs create mode 100644 src/entrypoints/sputnik/sputnik_types.rs create mode 100644 src/nearblocks_client/inspect.js create mode 100644 src/nearblocks_client/sputnik.json create mode 100644 src/nearblocks_client/sputnik.rs create mode 100644 src/nearblocks_client/test.js create mode 100644 transactions_testing-astradao.sputnik-dao.near.json diff --git a/.sqlx/query-425225f12b56dc21b010bcbd01153d447b08553afe8b7cba5655aeb2fd30fa87.json b/.sqlx/query-425225f12b56dc21b010bcbd01153d447b08553afe8b7cba5655aeb2fd30fa87.json new file mode 100644 index 0000000..a109183 --- /dev/null +++ b/.sqlx/query-425225f12b56dc21b010bcbd01153d447b08553afe8b7cba5655aeb2fd30fa87.json @@ -0,0 +1,12 @@ +{ + "db_name": "PostgreSQL", + "query": "DELETE FROM txns", + "describe": { + "columns": [], + "parameters": { + "Left": [] + }, + "nullable": [] + }, + "hash": "425225f12b56dc21b010bcbd01153d447b08553afe8b7cba5655aeb2fd30fa87" +} diff --git a/Cargo.lock b/Cargo.lock index e4db3dd..7f3ab19 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -62,9 +62,9 @@ dependencies = [ [[package]] name = "allocator-api2" -version = "0.2.20" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45862d1c77f2228b9e10bc609d5bc203d86ebc9b87ad8d5d5167a6c9abf739d9" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" [[package]] name = "android-tzdata" @@ -83,9 +83,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.93" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" +checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" [[package]] name = "arbitrary" @@ -121,7 +121,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -132,7 +132,7 @@ checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -342,7 +342,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -368,9 +368,9 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" [[package]] name = "bytemuck" -version = "1.19.0" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d" +checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a" [[package]] name = "byteorder" @@ -380,9 +380,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.8.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" +checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b" [[package]] name = "bytesize" @@ -416,9 +416,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.1" +version = "1.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47" +checksum = "9157bbaa6b165880c27a4293a474c91cdcf265cc68cc829bf10be0964a391caf" dependencies = [ "jobserver", "libc", @@ -445,9 +445,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] name = "chrono" -version = "0.4.38" +version = "0.4.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" dependencies = [ "android-tzdata", "iana-time-zone", @@ -531,9 +531,9 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cpufeatures" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ca741a962e1b0bff6d724a1a0958b686406e853bb14061f218562e1896f95e6" +checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" dependencies = [ "libc", ] @@ -564,18 +564,18 @@ dependencies = [ [[package]] name = "crossbeam-queue" -version = "0.3.11" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" +checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.8.20" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" [[package]] name = "crunchy" @@ -627,7 +627,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -651,7 +651,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -662,7 +662,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -719,7 +719,7 @@ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -732,7 +732,7 @@ dependencies = [ "proc-macro2", "quote", "rustc_version", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -741,6 +741,7 @@ version = "0.1.0" dependencies = [ "anyhow", "base64 0.22.1", + "borsh", "chrono", "devhub-shared", "dotenvy", @@ -804,7 +805,7 @@ dependencies = [ "proc-macro2", "proc-macro2-diagnostics", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -857,7 +858,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -935,7 +936,7 @@ checksum = "f282cfdfe92516eb26c2af8589c274c7c17681f5ecc03c18255fe741c6aa64eb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -955,12 +956,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "errno" -version = "0.3.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" +checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -982,9 +983,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "fastrand" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "fiat-crypto" @@ -1170,7 +1171,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -1263,7 +1264,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.6.0", + "indexmap 2.7.0", "slab", "tokio", "tokio-util", @@ -1272,17 +1273,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.6" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205" +checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" dependencies = [ "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", - "http 1.1.0", - "indexmap 2.6.0", + "http 1.2.0", + "indexmap 2.7.0", "slab", "tokio", "tokio-util", @@ -1307,9 +1308,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.15.1" +version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a9bfc1af68b1726ea47d3d5109de126281def866b33970e10fbab11b5dafab3" +checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" [[package]] name = "hashlink" @@ -1405,11 +1406,11 @@ dependencies = [ [[package]] name = "home" -version = "0.5.9" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" +checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -1425,9 +1426,9 @@ dependencies = [ [[package]] name = "http" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea" dependencies = [ "bytes", "fnv", @@ -1452,7 +1453,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ "bytes", - "http 1.1.0", + "http 1.2.0", ] [[package]] @@ -1463,7 +1464,7 @@ checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" dependencies = [ "bytes", "futures-util", - "http 1.1.0", + "http 1.2.0", "http-body 1.0.1", "pin-project-lite", ] @@ -1482,9 +1483,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "hyper" -version = "0.14.31" +version = "0.14.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c08302e8fa335b151b788c775ff56e7a03ae64ff85c548ee820fecb70356e85" +checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" dependencies = [ "bytes", "futures-channel", @@ -1506,15 +1507,15 @@ dependencies = [ [[package]] name = "hyper" -version = "1.5.0" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a" +checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.6", - "http 1.1.0", + "h2 0.4.7", + "http 1.2.0", "http-body 1.0.1", "httparse", "itoa", @@ -1526,20 +1527,20 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.27.3" +version = "0.27.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" +checksum = "f6884a48c6826ec44f524c7456b163cebe9e55a18d7b5e307cb4f100371cc767" dependencies = [ "futures-util", - "http 1.1.0", - "hyper 1.5.0", + "http 1.2.0", + "hyper 1.5.2", "hyper-util", - "rustls 0.23.17", + "rustls 0.23.20", "rustls-pki-types", "tokio", "tokio-rustls", "tower-service", - "webpki-roots 0.26.6", + "webpki-roots 0.26.7", ] [[package]] @@ -1550,7 +1551,7 @@ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" dependencies = [ "bytes", "http-body-util", - "hyper 1.5.0", + "hyper 1.5.2", "hyper-util", "native-tls", "tokio", @@ -1567,9 +1568,9 @@ dependencies = [ "bytes", "futures-channel", "futures-util", - "http 1.1.0", + "http 1.2.0", "http-body 1.0.1", - "hyper 1.5.0", + "hyper 1.5.2", "pin-project-lite", "socket2", "tokio", @@ -1715,7 +1716,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -1758,12 +1759,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.6.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" +checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" dependencies = [ "equivalent", - "hashbrown 0.15.1", + "hashbrown 0.15.2", "serde", ] @@ -1819,9 +1820,9 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.11" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" +checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" [[package]] name = "jobserver" @@ -1834,10 +1835,11 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.72" +version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9" +checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7" dependencies = [ + "once_cell", "wasm-bindgen", ] @@ -1890,7 +1892,7 @@ dependencies = [ "log", "openssl", "security-framework 2.11.1", - "security-framework 3.0.1", + "security-framework 3.1.0", "windows-sys 0.59.0", ] @@ -1942,9 +1944,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.164" +version = "0.2.168" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "433bfe06b8c75da9b2e3fbea6e5329ff87748f0b144ef75306e674c3f6f7c13f" +checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d" [[package]] name = "libdbus-sys" @@ -1992,9 +1994,9 @@ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" [[package]] name = "litemap" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" +checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" [[package]] name = "lock_api" @@ -2082,20 +2084,19 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.8.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" +checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394" dependencies = [ "adler2", ] [[package]] name = "mio" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" +checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" dependencies = [ - "hermit-abi 0.3.9", "libc", "wasi", "windows-sys 0.52.0", @@ -2110,7 +2111,7 @@ dependencies = [ "bytes", "encoding_rs", "futures-util", - "http 1.1.0", + "http 1.2.0", "httparse", "memchr", "mime", @@ -2201,14 +2202,14 @@ dependencies = [ [[package]] name = "near-api" -version = "0.2.1" -source = "git+https://github.com/near/near-api-rs#cd99c1ab74f2dbdc9ed785af7578f3609ea02c33" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a97c776b376cf7712e5e8942c0bf729baf05e939505ed33021f82e6b3e6baad" dependencies = [ "async-trait", "bip39", "borsh", "bs58 0.4.0", - "derive_more", "ed25519-dalek", "futures", "keyring", @@ -2227,7 +2228,6 @@ dependencies = [ "reqwest", "serde", "serde_json", - "serde_with", "slipped10", "thiserror 1.0.69", "tokio", @@ -2274,9 +2274,9 @@ dependencies = [ [[package]] name = "near-contract-standards" -version = "5.6.0" +version = "5.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b352e9b2f7c3abe5db91d91e446810433c6afbd3e43d7b3d989a2ef32c1dc2e" +checksum = "6b8bc68a8c2bac5e44b38e322e41cadeefe33f766993bf067375b63cc860a73b" dependencies = [ "near-sdk", ] @@ -2498,9 +2498,9 @@ checksum = "a1bca8c93ff0ad17138c147323a07f036d11c9e1602e3bc2ac9d29c3cf78b89d" [[package]] name = "near-sdk" -version = "5.6.0" +version = "5.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "581c7e6b1962fca1637bf668c18b498328100f8974aa798ed44702ba77c3bdac" +checksum = "befb9df6da1a6a0b6656388c0db76084867062a87f1cbc066c188a8e360b6463" dependencies = [ "base64 0.22.1", "borsh", @@ -2518,9 +2518,9 @@ dependencies = [ [[package]] name = "near-sdk-macros" -version = "5.6.0" +version = "5.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0818798144d69a248d76e22b04d1b89b84b80575c96c4af0f7f0332b22487a08" +checksum = "1268c4fc56bf53d70c200261fb8d57c6c1c6692243660f5f889c7fa4cf5771d2" dependencies = [ "Inflector", "darling", @@ -2530,7 +2530,7 @@ dependencies = [ "serde_json", "strum 0.26.3", "strum_macros 0.26.4", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -2802,7 +2802,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -2849,7 +2849,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -2970,7 +2970,7 @@ dependencies = [ "proc-macro2", "proc-macro2-diagnostics", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -3005,7 +3005,7 @@ checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -3117,9 +3117,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.89" +version = "1.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" +checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" dependencies = [ "unicode-ident", ] @@ -3132,7 +3132,7 @@ checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", "version_check", "yansi", ] @@ -3148,9 +3148,9 @@ dependencies = [ "quinn-proto", "quinn-udp", "rustc-hash", - "rustls 0.23.17", + "rustls 0.23.20", "socket2", - "thiserror 2.0.3", + "thiserror 2.0.8", "tokio", "tracing", ] @@ -3166,10 +3166,10 @@ dependencies = [ "rand", "ring", "rustc-hash", - "rustls 0.23.17", + "rustls 0.23.20", "rustls-pki-types", "slab", - "thiserror 2.0.3", + "thiserror 2.0.8", "tinyvec", "tracing", "web-time", @@ -3177,9 +3177,9 @@ dependencies = [ [[package]] name = "quinn-udp" -version = "0.5.7" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d5a626c6807713b15cac82a6acaccd6043c9a5408c24baae07611fec3f243da" +checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904" dependencies = [ "cfg_aliases", "libc", @@ -3238,9 +3238,9 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.5.7" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" +checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" dependencies = [ "bitflags 2.6.0", ] @@ -3273,7 +3273,7 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -3332,11 +3332,11 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "h2 0.4.6", - "http 1.1.0", + "h2 0.4.7", + "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.5.0", + "hyper 1.5.2", "hyper-rustls", "hyper-tls", "hyper-util", @@ -3349,7 +3349,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "quinn", - "rustls 0.23.17", + "rustls 0.23.20", "rustls-pemfile 2.2.0", "rustls-pki-types", "serde", @@ -3365,7 +3365,7 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots 0.26.6", + "webpki-roots 0.26.7", "windows-registry", ] @@ -3398,7 +3398,7 @@ dependencies = [ "either", "figment", "futures", - "indexmap 2.6.0", + "indexmap 2.7.0", "log", "memchr", "multer", @@ -3430,11 +3430,11 @@ checksum = "575d32d7ec1a9770108c879fc7c47815a80073f96ca07ff9525a94fcede1dd46" dependencies = [ "devise", "glob", - "indexmap 2.6.0", + "indexmap 2.7.0", "proc-macro2", "quote", "rocket_http", - "syn 2.0.87", + "syn 2.0.90", "unicode-xid", "version_check", ] @@ -3488,8 +3488,8 @@ dependencies = [ "either", "futures", "http 0.2.12", - "hyper 0.14.31", - "indexmap 2.6.0", + "hyper 0.14.32", + "indexmap 2.7.0", "log", "memchr", "pear", @@ -3507,9 +3507,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.9.6" +version = "0.9.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" +checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" dependencies = [ "const-oid", "digest 0.10.7", @@ -3545,7 +3545,7 @@ dependencies = [ "proc-macro2", "quote", "rust-embed-utils", - "syn 2.0.87", + "syn 2.0.90", "walkdir", ] @@ -3567,9 +3567,9 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" [[package]] name = "rustc-hash" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" +checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" [[package]] name = "rustc_version" @@ -3582,15 +3582,15 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.41" +version = "0.38.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6" +checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85" dependencies = [ "bitflags 2.6.0", "errno", "libc", "linux-raw-sys", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -3606,9 +3606,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.17" +version = "0.23.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f1a745511c54ba6d4465e8d5dfbd81b45791756de28d4981af70d6dca128f1e" +checksum = "5065c3f250cbd332cd894be57c40fa52387247659b14a2d6041d121547903b1b" dependencies = [ "log", "once_cell", @@ -3639,9 +3639,9 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.10.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" +checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37" dependencies = [ "web-time", ] @@ -3690,9 +3690,9 @@ dependencies = [ [[package]] name = "schannel" -version = "0.1.26" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1" +checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" dependencies = [ "windows-sys 0.59.0", ] @@ -3718,7 +3718,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -3777,9 +3777,9 @@ dependencies = [ [[package]] name = "security-framework" -version = "3.0.1" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1415a607e92bec364ea2cf9264646dcce0f91e6d65281bd6f2819cca3bf39c8" +checksum = "81d3f8c9bfcc3cbb6b0179eb57042d75b1582bdc65c3cb95f3fa999509c03cbc" dependencies = [ "bitflags 2.6.0", "core-foundation 0.10.0", @@ -3790,9 +3790,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.12.1" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa39c7303dc58b5543c94d22c1766b0d31f2ee58306363ea622b10bbc075eaa2" +checksum = "1863fd3768cd83c56a7f60faa4dc0d403f1b6df0a38c3c25f44b7894e45370d5" dependencies = [ "core-foundation-sys", "libc", @@ -3800,28 +3800,28 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.23" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" +checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" [[package]] name = "serde" -version = "1.0.215" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f" +checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.215" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0" +checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -3832,7 +3832,7 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -3855,7 +3855,7 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -3889,7 +3889,7 @@ dependencies = [ "chrono", "hex", "indexmap 1.9.3", - "indexmap 2.6.0", + "indexmap 2.7.0", "serde", "serde_derive", "serde_json", @@ -3906,7 +3906,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -3915,7 +3915,7 @@ version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.6.0", + "indexmap 2.7.0", "itoa", "ryu", "serde", @@ -4062,14 +4062,14 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] name = "socket2" -version = "0.5.7" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" +checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" dependencies = [ "libc", "windows-sys 0.52.0", @@ -4140,7 +4140,7 @@ dependencies = [ "futures-util", "hashlink", "hex", - "indexmap 2.6.0", + "indexmap 2.7.0", "log", "memchr", "once_cell", @@ -4394,7 +4394,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -4416,9 +4416,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.87" +version = "2.0.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" +checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" dependencies = [ "proc-macro2", "quote", @@ -4427,9 +4427,9 @@ dependencies = [ [[package]] name = "sync_wrapper" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" dependencies = [ "futures-core", ] @@ -4442,7 +4442,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -4507,11 +4507,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.3" +version = "2.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" +checksum = "08f5383f3e0071702bf93ab5ee99b52d26936be9dedd9413067cbdcddcb6141a" dependencies = [ - "thiserror-impl 2.0.3", + "thiserror-impl 2.0.8", ] [[package]] @@ -4522,18 +4522,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] name = "thiserror-impl" -version = "2.0.3" +version = "2.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" +checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -4548,9 +4548,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.36" +version = "0.3.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" dependencies = [ "deranged", "itoa", @@ -4569,9 +4569,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.18" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" dependencies = [ "num-conv", "time-core", @@ -4604,9 +4604,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.41.1" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" +checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" dependencies = [ "backtrace", "bytes", @@ -4628,7 +4628,7 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -4654,20 +4654,19 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.0" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" dependencies = [ - "rustls 0.23.17", - "rustls-pki-types", + "rustls 0.23.20", "tokio", ] [[package]] name = "tokio-stream" -version = "0.1.16" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1" +checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" dependencies = [ "futures-core", "pin-project-lite", @@ -4676,9 +4675,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.12" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" +checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" dependencies = [ "bytes", "futures-core", @@ -4714,7 +4713,7 @@ version = "0.22.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" dependencies = [ - "indexmap 2.6.0", + "indexmap 2.7.0", "serde", "serde_spanned", "toml_datetime", @@ -4729,9 +4728,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.40" +version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" dependencies = [ "log", "pin-project-lite", @@ -4741,20 +4740,20 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.27" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] name = "tracing-core" -version = "0.1.32" +version = "0.1.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" dependencies = [ "once_cell", "valuable", @@ -4773,9 +4772,9 @@ dependencies = [ [[package]] name = "tracing-subscriber" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" +checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" dependencies = [ "matchers", "nu-ansi-term", @@ -4850,15 +4849,15 @@ dependencies = [ [[package]] name = "unicode-bidi" -version = "0.3.17" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893" +checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" [[package]] name = "unicode-ident" -version = "1.0.13" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" +checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" [[package]] name = "unicode-normalization" @@ -4907,18 +4906,18 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "ureq" -version = "2.10.1" +version = "2.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a" +checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d" dependencies = [ "base64 0.22.1", "flate2", "log", "once_cell", - "rustls 0.23.17", + "rustls 0.23.20", "rustls-pki-types", "url", - "webpki-roots 0.26.6", + "webpki-roots 0.26.7", ] [[package]] @@ -4933,9 +4932,9 @@ dependencies = [ [[package]] name = "url" -version = "2.5.3" +version = "2.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada" +checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" dependencies = [ "form_urlencoded", "idna", @@ -4967,7 +4966,7 @@ version = "4.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c5afb1a60e207dca502682537fefcfd9921e71d0b83e9576060f09abc6efab23" dependencies = [ - "indexmap 2.6.0", + "indexmap 2.7.0", "serde", "serde_json", "utoipa-gen", @@ -4983,7 +4982,7 @@ dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -5055,9 +5054,9 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" [[package]] name = "wasm-bindgen" -version = "0.2.95" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" +checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396" dependencies = [ "cfg-if 1.0.0", "once_cell", @@ -5066,36 +5065,36 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.95" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" +checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79" dependencies = [ "bumpalo", "log", - "once_cell", "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.45" +version = "0.4.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b" +checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2" dependencies = [ "cfg-if 1.0.0", "js-sys", + "once_cell", "wasm-bindgen", "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.95" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" +checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -5103,28 +5102,28 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.95" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" +checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.95" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" +checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6" [[package]] name = "web-sys" -version = "0.3.72" +version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112" +checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc" dependencies = [ "js-sys", "wasm-bindgen", @@ -5148,9 +5147,9 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "webpki-roots" -version = "0.26.6" +version = "0.26.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" +checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" dependencies = [ "rustls-pki-types", ] @@ -5456,9 +5455,9 @@ dependencies = [ [[package]] name = "yoke" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" +checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" dependencies = [ "serde", "stable_deref_trait", @@ -5468,13 +5467,13 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" +checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", "synstructure", ] @@ -5496,27 +5495,27 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] name = "zerofrom" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" +checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" +checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", "synstructure", ] @@ -5545,7 +5544,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -5579,7 +5578,7 @@ dependencies = [ "crossbeam-utils", "displaydoc", "flate2", - "indexmap 2.6.0", + "indexmap 2.7.0", "num_enum", "thiserror 1.0.69", ] diff --git a/Cargo.toml b/Cargo.toml index edb308e..55b0b1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,11 +28,12 @@ anyhow = "1.0.76" rocket_cors = "0.6.0" utoipa-swagger-ui = { version = "7.1", features = ["rocket"] } reqwest = "0.12.8" -near-api = { git = "https://github.com/near/near-api-rs" } +near-api = "0.3.0" near-jsonrpc-client = "0.14.0" regex = "1.11.1" base64 = "0.22.1" futures = "0.3.31" +borsh = "1.5.3" [features] default = ["workspaces"] diff --git a/migrations/20241217195849_sputnik.sql b/migrations/20241217195849_sputnik.sql new file mode 100644 index 0000000..8a37346 --- /dev/null +++ b/migrations/20241217195849_sputnik.sql @@ -0,0 +1,65 @@ +-- Add migration script here + + +CREATE TABLE IF NOT EXISTS + dao_proposals ( + description VARCHAR NOT NULL, + id SERIAL PRIMARY KEY, + kind jsonb NOT NULL, + proposer VARCHAR NOT NULL, + status VARCHAR NOT NULL, + submission_time BIGINT NOT NULL, + vote_counts JSONB NOT NULL, + votes JSONB NOT NULL, + total_votes INT NOT NULL, + dao_instance VARCHAR NOT NULL, + proposal_action VARCHAR NOT NULL, + tx_timestamp BIGINT NOT NULL, + hash VARCHAR NOT NULL -- Link to the transaction that created the proposal? + ); + +CREATE INDEX idx_dao_proposals_description ON dao_proposals (description); +CREATE INDEX idx_dao_proposals_kind ON dao_proposals (kind); +CREATE INDEX idx_dao_proposals_proposer ON dao_proposals (proposer); +CREATE INDEX idx_dao_proposals_status ON dao_proposals (status); +CREATE INDEX idx_dao_proposals_submission_time ON dao_proposals (submission_time); +CREATE INDEX idx_dao_proposals_vote_counts ON dao_proposals (vote_counts); +CREATE INDEX idx_dao_proposals_votes ON dao_proposals (votes); +CREATE INDEX idx_dao_proposals_total_votes ON dao_proposals (total_votes); +CREATE INDEX idx_dao_proposals_dao_instance ON dao_proposals (dao_instance); +CREATE INDEX idx_dao_proposals_proposal_action ON dao_proposals (proposal_action); + +CREATE TABLE IF NOT EXISTS + txns ( + id SERIAL PRIMARY KEY, + tx_id BIGINT NOT NULL, + hash VARCHAR NOT NULL, + author_id VARCHAR NOT NULL, + dao_instance VARCHAR NOT NULL, + proposer VARCHAR NOT NULL, + description VARCHAR NOT NULL, + kind VARCHAR NOT NULL, + status VARCHAR NOT NULL, + total_votes INT NOT NULL, + vote_counts JSONB NOT NULL, + votes JSONB NOT NULL, + submission_time BIGINT NOT NULL, + proposal_action VARCHAR NOT NULL + ); + +CREATE INDEX idx_txns_hash ON txns (hash); +CREATE INDEX idx_txns_author_id ON txns (author_id); +CREATE INDEX idx_txns_dao_instance ON txns (dao_instance); +CREATE INDEX idx_txns_proposer ON txns (proposer); +CREATE INDEX idx_txns_description ON txns (description); +CREATE INDEX idx_txns_kind ON txns (kind); +CREATE INDEX idx_txns_status ON txns (status); +CREATE INDEX idx_txns_submission_time ON txns (submission_time); +CREATE INDEX idx_txns_proposal_action ON txns (proposal_action); + +CREATE TABLE IF NOT EXISTS + dao_instances_last_updated_info ( + instance VARCHAR NOT NULL PRIMARY KEY, + after_date BIGINT NOT NULL, + after_block BIGINT NOT NULL + ); diff --git a/src/db/db_types.rs b/src/db/db_types.rs index 7780036..7c07c05 100644 --- a/src/db/db_types.rs +++ b/src/db/db_types.rs @@ -139,3 +139,37 @@ pub struct RfpDumpRecord { pub author: String, pub rfp_id: i32, } + +#[derive(Debug, Clone, FromRow, Serialize, Deserialize, ToSchema)] +pub struct SputnikTxnsRecord { + pub id: i64, + pub hash: String, + pub author_id: String, + pub dao_instance: String, + pub proposer: String, + pub description: String, + pub kind: String, + pub status: String, + pub total_votes: i64, + pub vote_counts: serde_json::Value, + pub votes: serde_json::Value, + pub submission_time: i64, + pub proposal_action: String, +} + +#[derive(Debug, Clone, FromRow, Serialize, Deserialize, ToSchema)] +pub struct SputnikProposalSnapshotRecord { + pub description: String, + pub id: i64, + pub kind: serde_json::Value, + pub proposer: String, + pub status: String, + pub submission_time: i64, + pub vote_counts: serde_json::Value, + pub votes: serde_json::Value, + pub total_votes: i64, + pub dao_instance: String, + pub proposal_action: String, + pub tx_timestamp: i64, + pub hash: String, +} diff --git a/src/db/mod.rs b/src/db/mod.rs index 60b2c41..3452631 100644 --- a/src/db/mod.rs +++ b/src/db/mod.rs @@ -1,7 +1,12 @@ use crate::{ - entrypoints::{proposal::proposal_types::GetProposalFilters, rfp::rfp_types::GetRfpFilters}, + entrypoints::{ + proposal::proposal_types::GetProposalFilters, + rfp::rfp_types::GetRfpFilters, + sputnik::{GetDaoProposalsFilters, GetTxnsFilters}, + }, timestamp_to_date_string, }; +use near_sdk::AccountId; use rocket::{ fairing::{self, AdHoc}, Build, Rocket, @@ -17,7 +22,7 @@ pub mod db_types; use db_types::{ BlockHeight, LastUpdatedInfo, ProposalSnapshotRecord, ProposalWithLatestSnapshotView, - RfpSnapshotRecord, RfpWithLatestSnapshotView, + RfpSnapshotRecord, RfpWithLatestSnapshotView, SputnikProposalSnapshotRecord, SputnikTxnsRecord, }; impl DB { @@ -75,6 +80,58 @@ impl DB { }) } + pub async fn set_last_updated_info_for_contract( + &self, + contract: &AccountId, + after_date: i64, + after_block: BlockHeight, + ) -> Result<(), Error> { + sqlx::query!( + r#" + INSERT INTO dao_instances_last_updated_info (instance, after_date, after_block) + VALUES ($1, $2, $3) + ON CONFLICT (instance) DO UPDATE SET + after_date = $2, + after_block = $3 + "#, + contract.to_string(), + after_date, + after_block, + ) + .execute(&self.0) + .await?; + Ok(()) + } + + pub async fn get_last_updated_info_for_contract( + &self, + contract: &AccountId, + ) -> Result { + let rec = query!( + r#" + SELECT after_date, after_block FROM dao_instances_last_updated_info + WHERE instance = $1 + "#, + contract.to_string() + ) + .fetch_optional(&self.0) + .await?; + + if let Some(rec) = rec { + Ok(LastUpdatedInfo { + after_date: rec.after_date, + after_block: rec.after_block, + cursor: "".to_string(), + }) + } else { + Ok(LastUpdatedInfo { + after_date: 0, + after_block: 0, + cursor: "".to_string(), + }) + } + } + pub async fn set_last_updated_info( &self, after_date: i64, @@ -465,6 +522,18 @@ impl DB { Ok(()) } + // TODO Remove this once we go in production or put it behind authentication or a flag + pub async fn remove_all_dao_proposals(&self, account_id: &str) -> anyhow::Result<()> { + sqlx::query!( + r#"DELETE FROM dao_proposals WHERE dao_instance = $1"#, + account_id + ) + .execute(&self.0) + .await?; + + Ok(()) + } + pub async fn remove_all_data(&self) -> anyhow::Result<()> { sqlx::query!(r#"DELETE FROM proposals"#) .execute(&self.0) @@ -831,6 +900,233 @@ impl DB { Ok(snapshot) } + + pub async fn upsert_dao_proposal_snapshot( + tx: &mut Transaction<'static, Postgres>, + record: SputnikProposalSnapshotRecord, + ) -> anyhow::Result<()> { + let sql = r#" + INSERT INTO dao_proposals (description, id, kind, proposer, status, submission_time, vote_counts, votes, total_votes, dao_instance, proposal_action, tx_timestamp, hash) + VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) + ON CONFLICT (id) DO UPDATE SET + description = $1, + kind = $3, + proposer = $4, + status = $5, + submission_time = $6, + vote_counts = $7, + votes = $8, + total_votes = $9, + dao_instance = $10, + proposal_action = $11, + tx_timestamp = $12, + hash = $13 + "#; + let result = sqlx::query(sql) + .bind(record.description) + .bind(record.id) + .bind(record.kind) + .bind(record.proposer) + .bind(record.status) + .bind(record.submission_time) + .bind(record.vote_counts) + .bind(record.votes) + .bind(record.total_votes) + .bind(record.dao_instance) + .bind(record.proposal_action) + .bind(record.tx_timestamp) + .bind(record.hash) + .execute(tx.as_mut()) + .await; + + match result { + Ok(_) => Ok(()), + Err(e) => { + eprintln!("Failed to insert dao proposal snapshot: {:?}", e); + Err(anyhow::anyhow!("Failed to insert dao proposal snapshot")) + } + } + } + + pub async fn insert_txn( + tx: &mut Transaction<'static, Postgres>, + record: SputnikTxnsRecord, + ) -> anyhow::Result<()> { + let sql = r#" + INSERT INTO txns (id, hash, author_id, dao_instance, proposer, description, kind, status, total_votes, vote_counts, votes, submission_time, proposal_action) + VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) + "#; + let result = sqlx::query(sql) + .bind(record.id) + .bind(record.hash) + .bind(record.author_id) + .bind(&record.dao_instance) + .bind(record.proposer) + .bind(record.description) + .bind(record.kind) + .bind(record.status) + .bind(record.total_votes) + .bind(record.vote_counts) + .bind(record.votes) + .bind(record.submission_time) + .bind(record.proposal_action) + .execute(tx.as_mut()) + .await; + + match result { + Ok(_) => { + println!( + "Inserted transaction from account {} and id {:?}", + &record.dao_instance, record.id + ); + Ok(()) + } + Err(e) => { + eprintln!("Failed to insert txn: {:?}", e); + Err(anyhow::anyhow!("Failed to insert txn")) + } + } + } + + // pub async fn get_proposal_by_id( + // &self, + // proposal_id: i64, + // ) -> Result, sqlx::Error> { + // let sql = r#" + // SELECT * + // FROM proposals + // WHERE id = $1 + // "#; + // let proposal = sqlx::query_as::<_, ProposalRecord>(sql) + // .bind(proposal_id) + // .fetch_optional(&self.0) + // .await?; + // Ok(proposal) + // } + + pub async fn get_dao_proposals( + &self, + dao_instance: &str, + limit: i64, + order: &str, + offset: i64, + filters: Option, + ) -> anyhow::Result<(Vec, i64)> { + let order_clause = match order.to_lowercase().as_str() { + "ts_asc" => "submission_time ASC", + "ts_desc" => "submission_time DESC", + "id_asc" => "id ASC", + "id_desc" => "id DESC", + _ => "id DESC", // Default to DESC if the order is not recognized + }; + + let kind = filters.as_ref().and_then(|f| f.kind.as_ref()); + // let total_votes = filters.as_ref().and_then(|f| f.total_votes.as_ref()); + let status = filters.as_ref().and_then(|f| f.status.as_ref()); + + /* + * TODO add filters + * AND ($2 IS NULL OR kind->>'key' ILIKE '%' || $2 || '%') + AND ($3 IS NULL OR status->>'key' ILIKE '%' || $3 || '%') + */ + let sql = format!( + r#" + SELECT * + FROM dao_proposals + WHERE dao_instance = $1 + ORDER BY {} + LIMIT $4 OFFSET $5 + "#, + order_clause, + ); + + let proposals = sqlx::query_as::<_, SputnikProposalSnapshotRecord>(&sql) + .bind(dao_instance) + .bind(kind) + .bind(status) + .bind(limit) + .bind(offset) + .fetch_all(&self.0) + .await?; + + /* + AND ($2 IS NULL OR kind->>'key' ILIKE '%' || $2 || '%') + AND ($3 IS NULL OR status->>'key' ILIKE '%' || $3 || '%') */ + let count_sql = r#" + SELECT COUNT(*) + FROM dao_proposals + WHERE dao_instance = $1 + "#; + + let total_count = sqlx::query_scalar::<_, i64>(count_sql) + .bind(dao_instance) + .bind(kind) + .bind(status) + .fetch_one(&self.0) + .await?; + + Ok((proposals, total_count)) + } + + pub async fn get_txns( + &self, + account_id: &str, + limit: i64, + order: &str, + offset: i64, + filters: Option, + ) -> anyhow::Result<(Vec, i64)> { + // Validate the order clause to prevent SQL injection + let order_clause = match order.to_lowercase().as_str() { + "ts_asc" => "submission_time ASC", + "ts_desc" => "submission_time DESC", + "id_asc" => "id ASC", + "id_desc" => "id DESC", + _ => "id DESC", // Default to DESC if the order is not recognized + }; + + let author_id = filters.as_ref().and_then(|f| f.author_id.as_ref()); + let kind = filters.as_ref().and_then(|f| f.kind.as_ref()); + // let total_votes = filters.as_ref().and_then(|f| f.total_votes.as_ref()); + let status = filters.as_ref().and_then(|f| f.status.as_ref()); + + let sql = format!( + r#" + SELECT * + FROM txns + WHERE dao_instance = $1 + AND ($2 IS NULL OR author_id = $2) + AND ($3 IS NULL OR kind = $3) + AND ($4 IS NULL OR status = $4) + ORDER BY {} + LIMIT $5 OFFSET $6 + "#, + order_clause, + ); + + let txns = sqlx::query_as::<_, SputnikTxnsRecord>(&sql) + .bind(account_id) + .bind(author_id) + .bind(kind) + .bind(status) + .bind(limit) + .bind(offset) + .fetch_all(&self.0) + .await?; + + let count_sql = r#" + SELECT COUNT(*) + FROM txns + WHERE dao_instance = $1 + "#; + + let total_count = sqlx::query_scalar::<_, i64>(count_sql) + .bind(account_id) + .fetch_one(&self.0) + .await?; + + Ok((txns, total_count)) + } } async fn run_migrations(rocket: Rocket) -> fairing::Result { diff --git a/src/entrypoints/mod.rs b/src/entrypoints/mod.rs index 91550c8..d9c29ef 100644 --- a/src/entrypoints/mod.rs +++ b/src/entrypoints/mod.rs @@ -2,6 +2,7 @@ use rocket::fairing::AdHoc; use utoipa::OpenApi; pub mod proposal; pub mod rfp; +pub mod sputnik; use crate::db::db_types::ProposalWithLatestSnapshotView; use crate::types::PaginatedResponse; #[derive(OpenApi)] @@ -26,6 +27,9 @@ pub struct ApiDoc; pub fn stage() -> AdHoc { AdHoc::on_ignite("Installing entrypoints", |rocket| async { - rocket.attach(proposal::stage()).attach(rfp::stage()) + rocket + .attach(proposal::stage()) + .attach(rfp::stage()) + .attach(sputnik::stage()) }) } diff --git a/src/entrypoints/proposal/mod.rs b/src/entrypoints/proposal/mod.rs index 34e0cb2..b817780 100644 --- a/src/entrypoints/proposal/mod.rs +++ b/src/entrypoints/proposal/mod.rs @@ -94,7 +94,7 @@ async fn get_proposals( let last_updated_info = db.get_last_updated_info().await.unwrap(); if current_timestamp_nano - last_updated_info.after_date - >= chrono::Duration::seconds(60).num_nanoseconds().unwrap() + >= chrono::Duration::seconds(1).num_nanoseconds().unwrap() { update_nearblocks_data( db.inner(), @@ -127,7 +127,7 @@ async fn get_proposal_with_all_snapshots( let last_updated_info = db.get_last_updated_info().await.unwrap(); if current_timestamp_nano - last_updated_info.after_date - >= chrono::Duration::seconds(60).num_nanoseconds().unwrap() + >= chrono::Duration::seconds(1).num_nanoseconds().unwrap() { update_nearblocks_data( db.inner(), diff --git a/src/entrypoints/rfp/mod.rs b/src/entrypoints/rfp/mod.rs index 9e89bf4..4e58978 100644 --- a/src/entrypoints/rfp/mod.rs +++ b/src/entrypoints/rfp/mod.rs @@ -90,7 +90,7 @@ async fn get_rfps( let last_updated_info = db.get_last_updated_info().await.unwrap(); if current_timestamp_nano - last_updated_info.after_date - >= chrono::Duration::seconds(60).num_nanoseconds().unwrap() + >= chrono::Duration::seconds(1).num_nanoseconds().unwrap() { update_nearblocks_data( db.inner(), @@ -135,7 +135,7 @@ async fn get_rfp_with_snapshots( let last_updated_info = db.get_last_updated_info().await.unwrap(); if current_timestamp_nano - last_updated_info.after_date - >= chrono::Duration::seconds(60).num_nanoseconds().unwrap() + >= chrono::Duration::seconds(1).num_nanoseconds().unwrap() { update_nearblocks_data( db.inner(), diff --git a/src/entrypoints/sputnik/mod.rs b/src/entrypoints/sputnik/mod.rs new file mode 100644 index 0000000..8554604 --- /dev/null +++ b/src/entrypoints/sputnik/mod.rs @@ -0,0 +1,144 @@ +use crate::db::db_types::SputnikProposalSnapshotRecord; +use crate::db::DB; +use crate::nearblocks_client::transactions::update_nearblocks_data; +use crate::types::PaginatedResponse; +use near_account_id::AccountId; +use rocket::http::Status; +use rocket::serde::json::Json; +use rocket::{get, FromForm, State}; +use std::convert::TryInto; +use std::str::FromStr; +use utoipa::ToSchema; +pub mod policy; +pub mod sputnik_types; +// use sputnik_types::*; + +#[derive(Clone, Debug, FromForm, ToSchema)] +pub struct GetDaoProposalsFilters { + pub instance: Option, + pub proposer: Option, + pub status: Option, + pub kind: Option, + pub description: Option, + pub proposal_action: Option, +} + +#[derive(Clone, Debug, FromForm, ToSchema)] +pub struct GetTxnsFilters { + pub author_id: Option, + pub instance: Option, + pub proposer: Option, + pub status: Option, + pub kind: Option, + pub description: Option, + pub proposal_action: Option, +} + +async fn fetch_dao_proposals( + db: &DB, + account_id: &str, + limit: i64, + order: &str, + offset: i64, + filters: Option, +) -> (Vec, i64) { + match db + .get_dao_proposals(account_id, limit, order, offset, filters) + .await + { + Err(e) => { + eprintln!("Failed to get proposals: {:?}", e); + (vec![], 0) + } + Ok(result) => result, + } +} + +#[utoipa::path(get, path = "/dao/proposals/?&&&", params( + ("account_id"= &str, Path, description = "DAO account id"), + ("order"= &str, Path, description ="default order id_desc"), + ("limit"= i64, Path, description = "default limit 10"), + ("offset"= i64, Path, description = "offset"), + ("filters"= GetDaoProposalsFilters, Path, description = "filters struct that contains stuff like category, labels (vec), author_id, stage, block_timestamp (i64)"), +))] +#[get("/proposals/?&&&")] +async fn get_dao_proposals( + account_id: &str, + order: Option<&str>, + limit: Option, + offset: Option, + filters: Option, + db: &State, + nearblocks_api_key: &State, +) -> Option>> { + let order = order.unwrap_or("id_desc"); + let limit = limit.unwrap_or(10); + let offset = offset.unwrap_or(0); + + let contract = match AccountId::from_str(account_id) { + Ok(contract) => contract, + Err(_) => { + eprintln!("Invalid account id: {}", account_id); + return None; + } + }; + + let current_timestamp_nano = chrono::Utc::now().timestamp_nanos_opt().unwrap(); + let last_updated_info = db + .get_last_updated_info_for_contract(&contract) + .await + .unwrap(); + + if current_timestamp_nano - last_updated_info.after_date + >= chrono::Duration::seconds(2).num_nanoseconds().unwrap() + { + update_nearblocks_data( + db.inner(), + &contract, + nearblocks_api_key.inner(), + Some(last_updated_info.after_block), + ) + .await; + } + + let (proposals, total) = + fetch_dao_proposals(db, account_id, limit, order, offset, filters).await; + + Some(Json(PaginatedResponse::new( + proposals.into_iter().map(Into::into).collect(), + 1, + limit.try_into().unwrap(), + total.try_into().unwrap(), + ))) +} + +#[get("/proposals//block/")] +async fn set_block(account_id: &str, block: i64, db: &State) -> Result<(), Status> { + match db + .set_last_updated_info_for_contract(&AccountId::from_str(account_id).unwrap(), 0, block) + .await + { + Ok(()) => Ok(()), + Err(e) => { + eprintln!("Error updating block: {:?}", e); + Err(Status::InternalServerError) + } + } +} + +#[get("/proposals//reset")] +async fn reset_dao_proposals(account_id: &str, db: &State) -> Result<(), Status> { + db.remove_all_dao_proposals(account_id).await.unwrap(); + Ok(()) +} + +pub fn stage() -> rocket::fairing::AdHoc { + rocket::fairing::AdHoc::on_ignite("Rfp Stage", |rocket| async { + println!("Rfp stage on ignite!"); + + rocket.mount( + "/dao/", + rocket::routes![set_block, get_dao_proposals, reset_dao_proposals], + ) + }) +} diff --git a/src/entrypoints/sputnik/policy.rs b/src/entrypoints/sputnik/policy.rs new file mode 100644 index 0000000..fb29001 --- /dev/null +++ b/src/entrypoints/sputnik/policy.rs @@ -0,0 +1,216 @@ +use std::cmp::min; +use std::collections::{HashMap, HashSet}; + +use near_sdk::borsh::{self, BorshDeserialize, BorshSerialize}; +use near_sdk::json_types::{U128, U64}; +use near_sdk::serde::{Deserialize, Serialize}; +use near_sdk::AccountId; + +use super::sputnik_types::Balance; + +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] +#[serde(crate = "near_sdk::serde")] +pub enum RoleKind { + /// Matches everyone, who is not matched by other roles. + Everyone, + /// Member greater or equal than given balance. Can use `1` as non-zero balance. + Member(U128), + /// Set of accounts. + Group(HashSet), +} + +impl RoleKind { + /// Checks if user matches given role. + pub fn match_user(&self, user: &UserInfo) -> bool { + match self { + RoleKind::Everyone => true, + RoleKind::Member(amount) => user.amount >= amount.0, + RoleKind::Group(accounts) => accounts.contains(&user.account_id), + } + } + + /// Returns the number of people in the this role or None if not supported role kind. + pub fn get_role_size(&self) -> Option { + match self { + RoleKind::Group(accounts) => Some(accounts.len()), + _ => None, + } + } +} + +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] +#[serde(crate = "near_sdk::serde")] +pub struct RolePermission { + /// Name of the role to display to the user. + pub name: String, + /// Kind of the role: defines which users this permissions apply. + pub kind: RoleKind, + /// Set of actions on which proposals that this role is allowed to execute. + /// : + pub permissions: HashSet, + /// For each proposal kind, defines voting policy. + pub vote_policy: HashMap, +} + +pub struct UserInfo { + pub account_id: AccountId, + pub amount: Balance, +} + +/// Direct weight or ratio to total weight, used for the voting policy. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] +#[serde(crate = "near_sdk::serde")] +#[serde(untagged)] +pub enum WeightOrRatio { + Weight(U128), + Ratio(u64, u64), +} + +impl WeightOrRatio { + /// Convert weight or ratio to specific weight given total weight. + pub fn to_weight(&self, total_weight: Balance) -> Balance { + match self { + WeightOrRatio::Weight(weight) => min(weight.0, total_weight), + WeightOrRatio::Ratio(num, denom) => min( + (*num as u128 * total_weight) / *denom as u128 + 1, + total_weight, + ), + } + } +} + +/// How the voting policy votes get weigthed. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone, PartialEq)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug))] +#[serde(crate = "near_sdk::serde")] +pub enum WeightKind { + /// Using token amounts and total delegated at the moment. + TokenWeight, + /// Weight of the group role. Roles that don't have scoped group are not supported. + RoleWeight, +} + +/// Defines configuration of the vote. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] +#[serde(crate = "near_sdk::serde")] +pub struct VotePolicy { + /// Kind of weight to use for votes. + pub weight_kind: WeightKind, + /// Minimum number required for vote to finalize. + /// If weight kind is TokenWeight - this is minimum number of tokens required. + /// This allows to avoid situation where the number of staked tokens from total supply is too small. + /// If RoleWeight - this is minimum number of votes. + /// This allows to avoid situation where the role is got too small but policy kept at 1/2, for example. + pub quorum: U128, + /// How many votes to pass this vote. + pub threshold: WeightOrRatio, +} + +impl Default for VotePolicy { + fn default() -> Self { + VotePolicy { + weight_kind: WeightKind::RoleWeight, + quorum: U128(0), + threshold: WeightOrRatio::Ratio(1, 2), + } + } +} + +/// Defines voting / decision making policy of this DAO. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] +#[serde(crate = "near_sdk::serde")] +pub struct Policy { + /// List of roles and permissions for them in the current policy. + pub roles: Vec, + /// Default vote policy. Used when given proposal kind doesn't have special policy. + pub default_vote_policy: VotePolicy, + /// Proposal bond. + pub proposal_bond: U128, + /// Expiration period for proposals. + pub proposal_period: U64, + /// Bond for claiming a bounty. + pub bounty_bond: U128, + /// Period in which giving up on bounty is not punished. + pub bounty_forgiveness_period: U64, +} + +/// Versioned policy. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] +#[serde(crate = "near_sdk::serde", untagged)] +pub enum VersionedPolicy { + /// Default policy with given accounts as council. + Default(Vec), + Current(Policy), +} + +/// Defines default policy: +/// - everyone can add proposals +/// - group consisting of the call can do all actions, consists of caller. +/// - non token weighted voting, requires 1/2 of the group to vote +/// - proposal & bounty bond is 1N +/// - proposal & bounty forgiveness period is 1 day +pub fn default_policy(council: Vec) -> Policy { + Policy { + roles: vec![ + RolePermission { + name: "all".to_string(), + kind: RoleKind::Everyone, + permissions: vec!["*:AddProposal".to_string()].into_iter().collect(), + vote_policy: HashMap::default(), + }, + RolePermission { + name: "council".to_string(), + kind: RoleKind::Group(council.into_iter().collect()), + // All actions except RemoveProposal are allowed by council. + permissions: vec![ + "*:AddProposal".to_string(), + "*:VoteApprove".to_string(), + "*:VoteReject".to_string(), + "*:VoteRemove".to_string(), + "*:Finalize".to_string(), + ] + .into_iter() + .collect(), + vote_policy: HashMap::default(), + }, + ], + default_vote_policy: VotePolicy::default(), + proposal_bond: U128(10u128.pow(24)), + proposal_period: U64::from(1_000_000_000 * 60 * 60 * 24 * 7), + bounty_bond: U128(10u128.pow(24)), + bounty_forgiveness_period: U64::from(1_000_000_000 * 60 * 60 * 24), + } +} + +impl VersionedPolicy { + /// Upgrades either version of policy into the latest. + pub fn upgrade(self) -> Self { + match self { + VersionedPolicy::Default(accounts) => { + VersionedPolicy::Current(default_policy(accounts)) + } + VersionedPolicy::Current(policy) => VersionedPolicy::Current(policy), + } + } + + /// Return recent version of policy. + pub fn to_policy(self) -> Policy { + match self { + VersionedPolicy::Current(policy) => policy, + _ => unimplemented!(), + } + } + + pub fn to_policy_mut(&mut self) -> &mut Policy { + match self { + VersionedPolicy::Current(policy) => policy, + _ => unimplemented!(), + } + } +} diff --git a/src/entrypoints/sputnik/sputnik_types.rs b/src/entrypoints/sputnik/sputnik_types.rs new file mode 100644 index 0000000..524c64e --- /dev/null +++ b/src/entrypoints/sputnik/sputnik_types.rs @@ -0,0 +1,370 @@ +use near_sdk::borsh::{BorshDeserialize, BorshSerialize}; +use near_sdk::json_types::Base58CryptoHash; +use near_sdk::json_types::{U128, U64}; +use near_sdk::serde::{Deserialize, Serialize}; +use near_sdk::AccountId; +use std::collections::{HashMap, HashSet}; +pub type OldAccountId = String; +use near_sdk::json_types::Base64VecU8; +use std::cmp::min; + +use super::policy::VersionedPolicy; + +// NOTE: Not everything has to be deserialized + +pub type Balance = u128; + +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize)] +#[serde(crate = "near_sdk::serde")] +pub struct ProposalOutput { + /// Id of the proposal. + pub id: u64, + #[serde(flatten)] + pub proposal: Proposal, +} + +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug))] +#[serde(crate = "near_sdk::serde")] +pub struct Proposal { + /// Original proposer. + pub proposer: AccountId, + /// Description of this proposal. + pub description: String, + /// Kind of proposal with relevant information. + pub kind: ProposalKind, + /// Current status of the proposal. + pub status: ProposalStatus, + /// Count of votes per role per decision: yes / no / spam. + pub vote_counts: HashMap, + /// Map of who voted and how. + pub votes: HashMap, + /// Submission time (for voting period). + pub submission_time: U64, +} + +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone, Debug)] +#[serde(crate = "near_sdk::serde")] +pub struct Config { + /// Name of the DAO. + pub name: String, + /// Purpose of this DAO. + pub purpose: String, + /// Generic metadata. Can be used by specific UI to store additional data. + /// This is not used by anything in the contract. + pub metadata: Base64VecU8, +} + +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Clone, Debug))] +#[serde(crate = "near_sdk::serde")] +pub enum ProposalKind { + /// Change the DAO config. + ChangeConfig { config: Config }, + /// Change the full policy. + ChangePolicy { policy: VersionedPolicy }, + /// Add member to given role in the policy. This is short cut to updating the whole policy. + AddMemberToRole { member_id: AccountId, role: String }, + /// Remove member to given role in the policy. This is short cut to updating the whole policy. + RemoveMemberFromRole { member_id: AccountId, role: String }, + /// Calls `receiver_id` with list of method names in a single promise. + /// Allows this contract to execute any arbitrary set of actions in other contracts. + FunctionCall { + receiver_id: AccountId, + actions: Vec, + }, + /// Upgrade this contract with given hash from blob store. + UpgradeSelf { hash: Base58CryptoHash }, + /// Upgrade another contract, by calling method with the code from given hash from blob store. + UpgradeRemote { + receiver_id: AccountId, + method_name: String, + hash: Base58CryptoHash, + }, + /// Transfers given amount of `token_id` from this DAO to `receiver_id`. + /// If `msg` is not None, calls `ft_transfer_call` with given `msg`. Fails if this base token. + /// For `ft_transfer` and `ft_transfer_call` `memo` is the `description` of the proposal. + Transfer { + /// Can be "" for $NEAR or a valid account id. + token_id: OldAccountId, + receiver_id: AccountId, + amount: U128, + msg: Option, + }, + /// Sets staking contract. Can only be proposed if staking contract is not set yet. + SetStakingContract { staking_id: AccountId }, + /// Add new bounty. + AddBounty { bounty: Bounty }, + /// Indicates that given bounty is done by given user. + BountyDone { + bounty_id: u64, + receiver_id: AccountId, + }, + /// Just a signaling vote, with no execution. + Vote, + /// Change information about factory and auto update. + FactoryInfoUpdate { factory_info: FactoryInfo }, + /// Add new role to the policy. If the role already exists, update it. This is short cut to updating the whole policy. + ChangePolicyAddOrUpdateRole { role: RolePermission }, + /// Remove role from the policy. This is short cut to updating the whole policy. + ChangePolicyRemoveRole { role: String }, + /// Update the default vote policy from the policy. This is short cut to updating the whole policy. + ChangePolicyUpdateDefaultVotePolicy { vote_policy: VotePolicy }, + /// Update the parameters from the policy. This is short cut to updating the whole policy. + ChangePolicyUpdateParameters { parameters: PolicyParameters }, +} + +/// Function call arguments. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Clone, Debug))] +#[serde(crate = "near_sdk::serde")] +pub struct ActionCall { + method_name: String, + args: Base64VecU8, + deposit: U128, + gas: U64, +} + +impl ProposalKind { + /// Returns label of policy for given type of proposal. + pub fn to_policy_label(&self) -> &str { + match self { + ProposalKind::ChangeConfig { .. } => "config", + ProposalKind::ChangePolicy { .. } => "policy", + ProposalKind::AddMemberToRole { .. } => "add_member_to_role", + ProposalKind::RemoveMemberFromRole { .. } => "remove_member_from_role", + ProposalKind::FunctionCall { .. } => "call", + ProposalKind::UpgradeSelf { .. } => "upgrade_self", + ProposalKind::UpgradeRemote { .. } => "upgrade_remote", + ProposalKind::Transfer { .. } => "transfer", + ProposalKind::SetStakingContract { .. } => "set_vote_token", + ProposalKind::AddBounty { .. } => "add_bounty", + ProposalKind::BountyDone { .. } => "bounty_done", + ProposalKind::Vote => "vote", + ProposalKind::FactoryInfoUpdate { .. } => "factory_info_update", + ProposalKind::ChangePolicyAddOrUpdateRole { .. } => "policy_add_or_update_role", + ProposalKind::ChangePolicyRemoveRole { .. } => "policy_remove_role", + ProposalKind::ChangePolicyUpdateDefaultVotePolicy { .. } => { + "policy_update_default_vote_policy" + } + ProposalKind::ChangePolicyUpdateParameters { .. } => "policy_update_parameters", + } + } +} + +/// Bounty information. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug))] +#[serde(crate = "near_sdk::serde")] +pub struct Bounty { + /// Description of the bounty. + pub description: String, + /// Token the bounty will be paid out. + /// Can be "" for $NEAR or a valid account id. + pub token: OldAccountId, + /// Amount to be paid out. + pub amount: U128, + /// How many times this bounty can be done. + pub times: u32, + /// Max deadline from claim that can be spend on this bounty. + pub max_deadline: U64, +} + +/// Defines configuration of the vote. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] +#[serde(crate = "near_sdk::serde")] +pub struct VotePolicy { + /// Kind of weight to use for votes. + pub weight_kind: WeightKind, + /// Minimum number required for vote to finalize. + /// If weight kind is TokenWeight - this is minimum number of tokens required. + /// This allows to avoid situation where the number of staked tokens from total supply is too small. + /// If RoleWeight - this is minimum number of votes. + /// This allows to avoid situation where the role is got too small but policy kept at 1/2, for example. + pub quorum: U128, + /// How many votes to pass this vote. + pub threshold: WeightOrRatio, +} + +impl Default for VotePolicy { + fn default() -> Self { + VotePolicy { + weight_kind: WeightKind::RoleWeight, + quorum: U128(0), + threshold: WeightOrRatio::Ratio(1, 2), + } + } +} + +/// Direct weight or ratio to total weight, used for the voting policy. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] +#[serde(crate = "near_sdk::serde")] +#[serde(untagged)] +pub enum WeightOrRatio { + Weight(U128), + Ratio(u64, u64), +} + +impl WeightOrRatio { + /// Convert weight or ratio to specific weight given total weight. + pub fn to_weight(&self, total_weight: Balance) -> Balance { + match self { + WeightOrRatio::Weight(weight) => min(weight.0, total_weight), + WeightOrRatio::Ratio(num, denom) => min( + (*num as u128 * total_weight) / *denom as u128 + 1, + total_weight, + ), + } + } +} + +/// How the voting policy votes get weigthed. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone, PartialEq)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug))] +#[serde(crate = "near_sdk::serde")] +pub enum WeightKind { + /// Using token amounts and total delegated at the moment. + TokenWeight, + /// Weight of the group role. Roles that don't have scoped group are not supported. + RoleWeight, +} + +/// Info about factory that deployed this contract and if auto-update is allowed. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Clone, Debug))] +#[serde(crate = "near_sdk::serde")] +pub struct FactoryInfo { + pub factory_id: AccountId, + pub auto_update: bool, +} + +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] +#[serde(crate = "near_sdk::serde")] +pub struct RolePermission { + /// Name of the role to display to the user. + pub name: String, + /// Kind of the role: defines which users this permissions apply. + pub kind: RoleKind, + /// Set of actions on which proposals that this role is allowed to execute. + /// : + pub permissions: HashSet, + /// For each proposal kind, defines voting policy. + pub vote_policy: HashMap, +} + +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] +#[serde(crate = "near_sdk::serde")] +pub enum RoleKind { + /// Matches everyone, who is not matched by other roles. + Everyone, + /// Member greater or equal than given balance. Can use `1` as non-zero balance. + Member(U128), + /// Set of accounts. + Group(HashSet), +} + +impl RoleKind { + /// Returns the number of people in the this role or None if not supported role kind. + pub fn get_role_size(&self) -> Option { + match self { + RoleKind::Group(accounts) => Some(accounts.len()), + _ => None, + } + } +} + +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone, PartialEq, Debug)] +#[serde(crate = "near_sdk::serde")] +pub enum ProposalStatus { + InProgress, + /// If quorum voted yes, this proposal is successfully approved. + Approved, + /// If quorum voted no, this proposal is rejected. Bond is returned. + Rejected, + /// If quorum voted to remove (e.g. spam), this proposal is rejected and bond is not returned. + /// Interfaces shouldn't show removed proposals. + Removed, + /// Expired after period of time. + Expired, + /// If proposal was moved to Hub or somewhere else. + Moved, + /// If proposal has failed when finalizing. Allowed to re-finalize again to either expire or approved. + Failed, +} + +impl ToString for ProposalStatus { + fn to_string(&self) -> String { + match self { + ProposalStatus::InProgress => "InProgress".to_string(), + ProposalStatus::Approved => "Approved".to_string(), + ProposalStatus::Rejected => "Rejected".to_string(), + ProposalStatus::Removed => "Removed".to_string(), + ProposalStatus::Expired => "Expired".to_string(), + ProposalStatus::Moved => "Moved".to_string(), + ProposalStatus::Failed => "Failed".to_string(), + } + } +} + +/// Votes recorded in the proposal. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone, Debug)] +#[serde(crate = "near_sdk::serde")] +#[borsh(use_discriminant = true)] +pub enum Vote { + Approve = 0x0, + Reject = 0x1, + Remove = 0x2, +} + +impl From for Vote { + fn from(action: Action) -> Self { + match action { + Action::VoteApprove => Vote::Approve, + Action::VoteReject => Vote::Reject, + Action::VoteRemove => Vote::Remove, + _ => unreachable!(), + } + } +} + +/// Set of possible action to take. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Debug)] +#[serde(crate = "near_sdk::serde")] +pub enum Action { + /// Action to add proposal. Used internally. + AddProposal, + /// Action to remove given proposal. Used for immediate deletion in special cases. + RemoveProposal, + /// Vote to approve given proposal or bounty. + VoteApprove, + /// Vote to reject given proposal or bounty. + VoteReject, + /// Vote to remove given proposal or bounty (because it's spam). + VoteRemove, + /// Finalize proposal, called when it's expired to return the funds + /// (or in the future can be used for early proposal closure). + Finalize, + /// Move a proposal to the hub to shift into another DAO. + MoveToHub, +} + +impl Action { + pub fn to_policy_label(&self) -> String { + format!("{:?}", self) + } +} + +/// Function call arguments. +#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize)] +#[cfg_attr(not(target_arch = "wasm32"), derive(Clone, Debug))] +#[serde(crate = "near_sdk::serde")] +pub struct PolicyParameters { + pub proposal_bond: Option, + pub proposal_period: Option, + pub bounty_bond: Option, + pub bounty_forgiveness_period: Option, +} diff --git a/src/nearblocks_client/inspect.js b/src/nearblocks_client/inspect.js new file mode 100644 index 0000000..19c0f3a --- /dev/null +++ b/src/nearblocks_client/inspect.js @@ -0,0 +1,2161 @@ +let nearblocks_response = { + cursor: "9968066800", + txns: [ + { + id: "11369954394", + receipt_id: "GB6H5dC3neD411G78oA6TzBqXL6ZGoUF7xyNWabmLkF6", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8P7n37frTjCK5cZ5itgaUj1NVcTHxaPpJzgam3UyphpK", + block_height: 135106178, + block_timestamp: 1734344956043450600, + }, + receipt_outcome: { + gas_burnt: 4319833044195, + tokens_burnt: 431983304419500000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CPVEWWKn2XwMyR2mWg5y8ftsL2sS6Up9SLMfeHpLTQXu", + included_in_block_hash: "7Kkjf9n9qyX4kRJQ6pivB5fjyGXGZGWkRpyhc3zxK3WY", + block_timestamp: "1734344954790034570", + block: { + block_height: 135106177, + }, + receipt_conversion_tokens_burnt: "48687343125000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 431983304419500000000, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "*:VoteRemove", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "policy_update_parameters:AddProposal", "policy_add_or_update_role:AddProposal", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "megha19.near", "meghagoel.near", "petersalomonsen.near", "frol.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "864000000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update Policy"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 480670647544500000000, + }, + }, + { + id: "11368042777", + receipt_id: "78i1QinhhM8eK4FTETRQ4jBhihyhzrYtT6PKFWwvtrGm", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6zYN2GjGof9yiibazpzMQP7sosjcev12vBH4Amua4yBg", + block_height: 135102877, + block_timestamp: 1734340801646546200, + }, + receipt_outcome: { + gas_burnt: 223182562500, + tokens_burnt: 22318256250000000000, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "Hzh3LJnDHJFBLRKT2e5e7YfTjrmh66wVpK9GCkR9Db6t", + included_in_block_hash: "Gx2GGFrbpiJtTL4RctbLzMGFCpy4Q3A78143affug4cg", + block_timestamp: "1734340799052999087", + block: { + block_height: 135102875, + }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0, + fee: 22318256250000000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 381145543250700000000, + }, + }, + { + id: "11368041967", + receipt_id: "2JG9P6wTKM3x6rtiKCwc2fJF8TnjdngJuyTvmnz1vEhw", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "C49xXh6q57ABPg15BRMwT7svt71De8v1QcdHBm19fwbv", + block_height: 135102876, + block_timestamp: 1734340800346017500, + }, + receipt_outcome: { + gas_burnt: 3278115286547, + tokens_burnt: 327811528654700000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Hzh3LJnDHJFBLRKT2e5e7YfTjrmh66wVpK9GCkR9Db6t", + included_in_block_hash: "Gx2GGFrbpiJtTL4RctbLzMGFCpy4Q3A78143affug4cg", + block_timestamp: "1734340799052999087", + block: { + block_height: 135102875, + }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 327811528654700000000, + args: '{"id": 129, "action": "VoteReject"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 381145543250700000000, + }, + }, + { + id: "11368013253", + receipt_id: "5Sh4eKAHeDCGnnYY6cPUbu9d12vsg31PcADZ2BHiRvzF", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6Sj1to8G8kggjenKxXSJ519bcaYZ5H5yrXTLyPPXytQB", + block_height: 135102795, + block_timestamp: 1734340702309651200, + }, + receipt_outcome: { + gas_burnt: 2913798985415, + tokens_burnt: 291379898541500000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3gbZU7e9c42TS5ZVXbYWBPVbhC8j4aH9gr6ofXqU9Fyg", + included_in_block_hash: "H5i7vuSi1Zghw13SMpq7QwmjVAwxqQJmvukmDxFbw8Tg", + block_timestamp: "1734340701219740273", + block: { + block_height: 135102794, + }, + receipt_conversion_tokens_burnt: "31559352697000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 291379898541500000000, + args: '{"proposal": {"kind": {"ChangePolicyUpdateParameters": {"parameters": {"proposal_period": "950400000000000"}}}, "description": "Change proposal period"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 322939251238500000000, + }, + }, + { + id: "11367989314", + receipt_id: "BmvpCjxt4cbCrqjVheyYPPBTtYE7gX6sRStQgJk43QCf", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "E4CxtaBZ6gaApuWQRRu9KmTNi4JQhJNXzxwrsyKVxKBQ", + block_height: 135102730, + block_timestamp: 1734340624801901300, + }, + receipt_outcome: { + gas_burnt: 2713255968758, + tokens_burnt: 271325596875800000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "7nJpxwPMMm5GioDEQqnFahjdfoFGMQwjBmhLWtqVNrwu", + included_in_block_hash: "FrCfDWQsPLFCTHcdPiwCmwD1oXVr2tbF8FWZ9JqESouv", + block_timestamp: "1734340623452087523", + block: { + block_height: 135102729, + }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 271325596875800000000, + args: '{"id": 128, "action": "VoteReject"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: false, + }, + outcomes_agg: { + transaction_fee: 302341355221800000000, + }, + }, + { + id: "11150945850", + receipt_id: "C4sUyGYrGYRXnmXfXnLD8HtnsfstYPyDWCTLqeaMPP3Y", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GPB6veEAgqyFVcb7tegfkhjbkueKJfKc9Bub9rFCar9D", + block_height: 134703868, + block_timestamp: 1733882659613957400, + }, + receipt_outcome: { + gas_burnt: 223182562500, + tokens_burnt: 22318256250000000000, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "3jZjrU9LqZLfFP3HeRhEVMJ8foaQghH39kvh51xWfWs9", + included_in_block_hash: "2pWL8Vo72gDwrvfqHmpF6xxoRhrr3D3m8VqSBJvAg7Ua", + block_timestamp: "1733882657325144977", + block: { + block_height: 134703866, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0, + fee: 22318256250000000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 538603285960600000000, + }, + }, + { + id: "11150945509", + receipt_id: "AZneFScvsGnRK8JDwh1HdHxNTd3Hf5YFPsNdV5Hrking", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GEjwNt1dLrcK6GMJVpStTtDdW8W69puKLJhpFPXTtMRB", + block_height: 134703867, + block_timestamp: 1733882658333006600, + }, + receipt_outcome: { + gas_burnt: 4852645029931, + tokens_burnt: 485264502993100000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3jZjrU9LqZLfFP3HeRhEVMJ8foaQghH39kvh51xWfWs9", + included_in_block_hash: "2pWL8Vo72gDwrvfqHmpF6xxoRhrr3D3m8VqSBJvAg7Ua", + block_timestamp: "1733882657325144977", + block: { + block_height: 134703866, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 485264502993100000000, + args: '{"id": 128, "action": "VoteApprove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 538603285960600000000, + }, + }, + { + id: "11150943995", + receipt_id: "4pExm3evPc5UNoNQBuhatzw5QKH38SSzAWvPz4wDwdgL", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5M1QJ3WtawWxbhMo2ws16hBXsc9kywcjTGa9nwzbeY7m", + block_height: 134703862, + block_timestamp: 1733882652896874200, + }, + receipt_outcome: { + gas_burnt: 4245699043435, + tokens_burnt: 424569904343500000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4DprRkqApkp4Yre9vsoopiK6NcApcnCkaLbEo6MvGyTS", + included_in_block_hash: "ARL6VGdAuAsnwSo6o9eJsvAZCVS9xcYqgTbHTuVmc3C3", + block_timestamp: "1733882651674783740", + block: { + block_height: 134703861, + }, + receipt_conversion_tokens_burnt: "48687343125000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 424569904343500000000, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "*:VoteRemove", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "policy_update_parameters:AddProposal", "policy_add_or_update_role:AddProposal", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "megha19.near", "meghagoel.near", "petersalomonsen.near", "frol.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "864000000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 473257247468500000000, + }, + }, + { + id: "11150202109", + receipt_id: "58h5eQ8d1yJhnx3iqFbbh88Db9GRFpGXkeBMAg8aSnxK", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4mkHyvFM7FHNhnsPS3oMF2RDFNFDnHnMgYKPTCU31psk", + block_height: 134701563, + block_timestamp: 1733879912444341500, + }, + receipt_outcome: { + gas_burnt: 223182562500, + tokens_burnt: 22318256250000000000, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "Ex6tKYc35k22oRXDG5yvPFvRXRd6dDj82oMhCU9UtTqR", + included_in_block_hash: "FpkLSxP8BCBeHNRmhbZce8fzpP4GukMPxsVr925gRC5h", + block_timestamp: "1733879910006974460", + block: { + block_height: 134701561, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0, + fee: 22318256250000000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 536437364002100000000, + }, + }, + { + id: "11150201675", + receipt_id: "vdjFgzgBuTBVPRSq5KFgnnwd1iTQAEbFzybABnQnhbK", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HRYTMdkskTdn2wpaueUj3kJ3C3HnpDnpv4qLucebTvSo", + block_height: 134701562, + block_timestamp: 1733879911228003600, + }, + receipt_outcome: { + gas_burnt: 4830985810346, + tokens_burnt: 483098581034600000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Ex6tKYc35k22oRXDG5yvPFvRXRd6dDj82oMhCU9UtTqR", + included_in_block_hash: "FpkLSxP8BCBeHNRmhbZce8fzpP4GukMPxsVr925gRC5h", + block_timestamp: "1733879910006974460", + block: { + block_height: 134701561, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 483098581034600000000, + args: '{"id": 127, "action": "VoteApprove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 536437364002100000000, + }, + }, + { + id: "11150200034", + receipt_id: "8nNvDrhpPeEnpYJEqKs9SwwVFa4CnANn8JXXBoMEvFHA", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8SDxQdgPy4BBMg3yidLJFyozBQG7jTEZTRnEMMFEhta8", + block_height: 134701557, + block_timestamp: 1733879905560422700, + }, + receipt_outcome: { + gas_burnt: 4297511363923, + tokens_burnt: 429751136392300000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9RdLF5mPt5gJKGUqJApa2n3pWy6VsFg44k4U91fqffTD", + included_in_block_hash: "8wZhPtUE9YEbK21xZHJ1T6dQJcBnyEYRUvJgiVPmoePo", + block_timestamp: "1733879904272674011", + block: { + block_height: 134701556, + }, + receipt_conversion_tokens_burnt: "48630122667000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 429751136392300000000, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "*:VoteRemove", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "policy_update_parameters:AddProposal", "policy_add_or_update_role:AddProposal", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "megha19.near", "meghagoel.near", "petersalomonsen.near", "frol.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "864000000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 478381259059300000000, + }, + }, + { + id: "10720800369", + receipt_id: "FTyYZVFAav1UEi9VbosYavpoYepyxCgDWp6M6D9Aw939", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3Q6Jzu1GYYaX3BuKAkDw7jzCCuUN8fz4rCxcC7d9YAeM", + block_height: 134214828, + block_timestamp: 1733324542867720200, + }, + receipt_outcome: { + gas_burnt: 2850625428917, + tokens_burnt: 285062542891700000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HpbwTiTLtr9UgTEMxUFFZPKeL8P26fWEMSAk3nRhK45b", + included_in_block_hash: "DP79S6V1pNAwoCCPNZzi4EbU9k4DRVkVxR1wr4FySef8", + block_timestamp: "1733324541689127587", + block: { + block_height: 134214827, + }, + receipt_conversion_tokens_burnt: "32126788905500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 285062542891700000000, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "", "deposit": "10000000000000000000000", "method_name": "deposit_and_stake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "* Proposal Action: stake\\\\\\\\n* Notes: Testing notes"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 317189331797200000000, + }, + }, + { + id: "10720604169", + receipt_id: "JDXLxzphA1eaZURQho6dhcHQ1DA6e4f2hUVjrN7XJPWK", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EE2WTftHiqFS93B5RscG2Qeoo15uqAeUXMDLBsws6Uhs", + block_height: 134214314, + block_timestamp: 1733323961563307800, + }, + receipt_outcome: { + gas_burnt: 2878391097269, + tokens_burnt: 287839109726900000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DEgKuPgFcaWNYCt8LKMfnCTea4FAtj8AcPxALKSRgEED", + included_in_block_hash: "PGB3uBdPbR1SQRfaT9WZRDDuxLaMQuKnd1kmanTKJxh", + block_timestamp: "1733323960346437884", + block: { + block_height: 134214313, + }, + receipt_conversion_tokens_burnt: "33557300355500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 287839109726900000000, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000", "token_id": "usdt.tether-token.near", "receiver_id": "thomasguntenaar.near"}}, "description": "* Title: DevHub Developer Contributor report by THOMAS for 11/11/2024 \\\\\\\\u{2013}\\\\\\\\u{a0}11/22/2024\\\\\\\\n* Summary: Replacing the indexer infrastructure which we use at devhub to efficiently query data about proposals and rfp\\\\\\\\\\\\\'s so we can filter order search in the main dashboards of the events- & infrastructure-committee, the templar instance & devhub itself. Also supporting the treasury dashboards.\\\\\\\\n* Notes: testing\\\\\\\\n* Proposal Id: 260"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 321396410082400000000, + }, + }, + { + id: "10720529640", + receipt_id: "EikJNrxWrTsFsj46rYVbR75JQEyyNoGV5LrkM5UgjMcM", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "A6YDZ2RttXmUx4enqAFX6jECLRzCUkygdEwRgmTmL8PR", + block_height: 134214132, + block_timestamp: 1733323758364167400, + }, + receipt_outcome: { + gas_burnt: 2862659748957, + tokens_burnt: 286265974895700000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "APMLNvBbSKkcdrT2DCB1o4KKBZySrRe4K9z5DvwYG5Sn", + included_in_block_hash: "D7t1wpJftHPvtVfc4R3SnUXK8N7atp19mtWSMw3sYcfs", + block_timestamp: "1733323757308472623", + block: { + block_height: 134214131, + }, + receipt_conversion_tokens_burnt: "32889728345500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 286265974895700000000, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000000000000000000000", "token_id": "", "receiver_id": "megha19.near"}}, "description": "* Title: DevHub Developer Contributor report by Megha for 11/04/2024 - 12/01/2024\\\\\\\\n* Summary: Worked on treasury dashboard, added support for lockup contract, added staking and unstaking, updated dashboard, infinex, helped Thomas with indexer testing.\\\\\\\\n* Notes: testing notes\\\\\\\\n* ProposalId: 266"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 319155703241200000000, + }, + }, + { + id: "10720513722", + receipt_id: "AuEPYCJYroemnSNvw9wiJtoUteE6jG9MY7V4JCTdjTJb", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GhemU4nwmykrCyi5ZzRX8rEujETt3CvTR8gN4z5mpDbd", + block_height: 134214092, + block_timestamp: 1733323714238445300, + }, + receipt_outcome: { + gas_burnt: 2868958055157, + tokens_burnt: 286895805515700000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FRgrLB1X5LXQRQUUbbU7gAeBUZMUzwqpepteXVGVGG1H", + included_in_block_hash: "FTe4cwpXn7V96vPbZ1rYH4AtmEaCQpJgdBC1GvbsVh8L", + block_timestamp: "1733323713336309823", + block: { + block_height: 134214091, + }, + receipt_conversion_tokens_burnt: "33075694834000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 286895805515700000000, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000000000000000000000", "token_id": "", "receiver_id": "megha19.near"}}, "description": "* Title: DevRel & DevHub (01 - 30 November) Contributor Report\\\\\\\\n* Summary: Monthly paid developer relations contributor report. These activities aim to onboard more developers to the ecosystem, and assist existing developers with problems or enrich their experience. Activities for the last month can be seen below.\\\\\\\\n* ProposalId: 267"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 319971500349700000000, + }, + }, + { + id: "10648074527", + receipt_id: "JAw6bLmMdJUgsx1hTWYfJKuHbKpveCRYuhwGww1rR4Wf", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6mac8ZXePSf29HxWA3jkWV9kqyhwN1wDTRf6z8mG9UJF", + block_height: 134053019, + block_timestamp: 1733140424910559700, + }, + receipt_outcome: { + gas_burnt: 223182562500, + tokens_burnt: 22318256250000000000, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + included_in_block_hash: "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + block_timestamp: "1733140420619015943", + block: { + block_height: 134053015, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0, + fee: 22318256250000000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 1.2361571289765e21, + }, + }, + { + id: "10648073797", + receipt_id: "8NZx7B87hPwNA1LKLjPejXz5fB3k7rDbrhVQdgANcUTz", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4DR41Vw6Y1xhqZbVsgPqT8TwibwydMYHAiFhpaf1hEDH", + block_height: 134053017, + block_timestamp: 1733140422933179600, + }, + receipt_outcome: { + gas_burnt: 3127924417561, + tokens_burnt: 312792441756100000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + included_in_block_hash: "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + block_timestamp: "1733140420619015943", + block: { + block_height: 134053015, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0, + fee: 312792441756100000000, + args: '{"proposal_id": 122}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 1.2361571289765e21, + }, + }, + { + id: "10648073795", + receipt_id: "9geJZS8dJJeUipbq74f8UEGCWX3LByG1E6phnSzVscPB", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "bisontrails.poolv1.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4DR41Vw6Y1xhqZbVsgPqT8TwibwydMYHAiFhpaf1hEDH", + block_height: 134053017, + block_timestamp: 1733140422933179600, + }, + receipt_outcome: { + gas_burnt: 3026095435036, + tokens_burnt: 302609543503600000000, + executor_account_id: "bisontrails.poolv1.near", + status: true, + }, + transaction_hash: "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + included_in_block_hash: "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + block_timestamp: "1733140420619015943", + block: { + block_height: 134053015, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "unstake", + deposit: 0, + fee: 302609543503600000000, + args: '{"amount": "250000000000000000000000"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 1.2361571289765e21, + }, + }, + { + id: "10648073416", + receipt_id: "8a4KWaJ9BhCncnxb6Ao7jiQQhbWFr47eofwyqCuk8DCh", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DA8RYzaANrJnDs1gJiy8KFSJ42Qh4qNqVsn5p2GsERne", + block_height: 134053016, + block_timestamp: 1733140421840036000, + }, + receipt_outcome: { + gas_burnt: 3872545268656, + tokens_burnt: 387254526865600000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + included_in_block_hash: "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + block_timestamp: "1733140420619015943", + block: { + block_height: 134053015, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 387254526865600000000, + args: '{"id": 122, "action": "VoteApprove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 1.2361571289765e21, + }, + }, + { + id: "10648069284", + receipt_id: "BNXhwN4sa2jvtQfFtSbLN4tQmndeSrMFYR1tQokaPhsi", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BQn8x3TVirjgrxSaY4gL3CorDK7BjMroD4c6ZiCZEW8S", + block_height: 134053002, + block_timestamp: 1733140406100546800, + }, + receipt_outcome: { + gas_burnt: 2937463757289, + tokens_burnt: 293746375728900000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DsK5ZjnGmXQ4qLu9eypZaQGquBRzZLuYRs3j63GmrrUf", + included_in_block_hash: "EnoCmmFgYf6TASXN3fwcKy8Y1FAZbPtWBSnjyPZ1vLby", + block_timestamp: "1733140404966551975", + block: { + block_height: 134053001, + }, + receipt_conversion_tokens_burnt: "32174472620500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 293746375728900000000, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJhbW91bnQiOiIyNTAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==", "deposit": "0", "method_name": "unstake"}], "receiver_id": "bisontrails.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null}"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 325920848349400000000, + }, + }, + { + id: "10647933369", + receipt_id: "ESo2FwdsVTLx7X6eFALMD8B6vQJtvEdkHYiEL7hXScjK", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HatkhgwuQ3d8GJ4EKhTRMEosv6npaLhXy6JBbtJeeCSr", + block_height: 134052706, + block_timestamp: 1733140066661023200, + }, + receipt_outcome: { + gas_burnt: 223182562500, + tokens_burnt: 22318256250000000000, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + included_in_block_hash: "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + block_timestamp: "1733140062280899672", + block: { + block_height: 134052702, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0, + fee: 22318256250000000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 1.2976023778136e21, + }, + }, + { + id: "10647932407", + receipt_id: "9C1dgZcP8aJS4xq1Et4e4zHxY5N9eEzZaUqCEmj9SXct", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ADskNobd8PfxZfQVSHytXLNcqy5Ge9wBWv2dWiBs7hKh", + block_height: 134052704, + block_timestamp: 1733140064547454200, + }, + receipt_outcome: { + gas_burnt: 3122365808778, + tokens_burnt: 312236580877800000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + included_in_block_hash: "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + block_timestamp: "1733140062280899672", + block: { + block_height: 134052702, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0, + fee: 312236580877800000000, + args: '{"proposal_id": 121}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 1.2976023778136e21, + }, + }, + { + id: "10647932398", + receipt_id: "F1spBNpqEVJQjwVHoYVcvV5XH9MnKWvsFG2RpCHSLDrX", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "bisontrails.poolv1.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ADskNobd8PfxZfQVSHytXLNcqy5Ge9wBWv2dWiBs7hKh", + block_height: 134052704, + block_timestamp: 1733140064547454200, + }, + receipt_outcome: { + gas_burnt: 3653767743965, + tokens_burnt: 365376774396500000000, + executor_account_id: "bisontrails.poolv1.near", + status: true, + }, + transaction_hash: "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + included_in_block_hash: "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + block_timestamp: "1733140062280899672", + block: { + block_height: 134052702, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "deposit_and_stake", + deposit: 5e23, + fee: 365376774396500000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 1.2976023778136e21, + }, + }, + { + id: "10647931699", + receipt_id: "4AJWHiKW3xdXmKQ6QrPQngxRASL2MjN5JjKhCGcCVeYJ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "37fFFLcdwevxmQ66fWjp7qhfT9QUauPYG12VysJ7vSbo", + block_height: 134052703, + block_timestamp: 1733140063423976200, + }, + receipt_outcome: { + gas_burnt: 3864884056881, + tokens_burnt: 386488405688100000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + included_in_block_hash: "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + block_timestamp: "1733140062280899672", + block: { + block_height: 134052702, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 386488405688100000000, + args: '{"id": 121, "action": "VoteApprove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 1.2976023778136e21, + }, + }, + { + id: "10647922519", + receipt_id: "8sb9ksPmcHSLH1AuV9DyQfanD1sHtYxpMxFvn6RcUaqm", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5defsqWDGsDnkhuMsr1Ngp6XQTiB5Wc35waJBCHZjKKc", + block_height: 134052682, + block_timestamp: 1733140040444847400, + }, + receipt_outcome: { + gas_burnt: 2935677627509, + tokens_burnt: 293567762750900000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CHZPAstbJ2yhKeEzTnxwq3KTHkqwbdhpVTkLYVvmdLRE", + included_in_block_hash: "7pb3j2iZ1Z14Br3vyV4e98evdVjwwK5s6RKZxG3CnkDe", + block_timestamp: "1733140038071558701", + block: { + block_height: 134052681, + }, + receipt_conversion_tokens_burnt: "32083873562000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 293567762750900000000, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "", "deposit": "500000000000000000000000", "method_name": "deposit_and_stake"}], "receiver_id": "bisontrails.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 325651636312900000000, + }, + }, + { + id: "10502128620", + receipt_id: "AdxQe2hUW3XnEt7E4HSjrZtNC9DivmJNmTpLjGrYLTCd", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "J2hCaQDnbX8GeFQmttyxvKPpMPnAGg4qQkNRdCi2tz2Q", + block_height: 133691943, + block_timestamp: 1732733071451980500, + }, + receipt_outcome: { + gas_burnt: 2896154997999, + tokens_burnt: 289615499799900000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GNEUnNkpf9aTE3RRdgoen3zk3R9Hg1TRygR8Fk8XMurY", + included_in_block_hash: "3D1S5qcv4tQfboZGQHagrYKiCeg4sUfddfaSXfbUfgou", + block_timestamp: "1732733070349639574", + block: { + block_height: 133691942, + }, + receipt_conversion_tokens_burnt: "31559352697000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 289615499799900000000, + args: '{"proposal": {"kind": {"ChangePolicyUpdateParameters": {"parameters": {"proposal_period": "950400000000000"}}}, "description": "Change proposal period"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 321174852496900000000, + }, + }, + { + id: "10400226934", + receipt_id: "2XBgiApgBac5uxRW9MSBdXaBNxXyPUn8EFh4UQGgVW3k", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2FmBRr3Hpy69bamEwrFVnk6Gub5neE9Vaj5jAy7foUAW", + block_height: 133425552, + block_timestamp: 1732436112636790300, + }, + receipt_outcome: { + gas_burnt: 223182562500, + tokens_burnt: 22318256250000000000, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "ASk12bypjh8c4cP17DyjoqAy7RLnEJ55XEmLDF91tVAB", + included_in_block_hash: "3DC13HQASejwCLjPgzQ5oRtSu9Rvw72TB2Wfff8ZMJzq", + block_timestamp: "1732436110418787854", + block: { + block_height: 133425550, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0, + fee: 22318256250000000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 442002275082800000000, + }, + }, + { + id: "10400226636", + receipt_id: "BthqH69KiBprL6p9rhqFMrTHPrvnFVRzKd45gaeyb1gf", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "28P9hn5HovWQeeoYHxdBmdXPdzM7pxQ7WpgEDNbxupDZ", + block_height: 133425551, + block_timestamp: 1732436111586207500, + }, + receipt_outcome: { + gas_burnt: 3886634921153, + tokens_burnt: 388663492115300000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "ASk12bypjh8c4cP17DyjoqAy7RLnEJ55XEmLDF91tVAB", + included_in_block_hash: "3DC13HQASejwCLjPgzQ5oRtSu9Rvw72TB2Wfff8ZMJzq", + block_timestamp: "1732436110418787854", + block: { + block_height: 133425550, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 388663492115300000000, + args: '{"id": 119, "action": "VoteApprove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 442002275082800000000, + }, + }, + { + id: "10400202465", + receipt_id: "AKZumKZhapwsrTkp49q4yG8QGeU4YNHiMhK5FW4Cv2Yj", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "G7d5eK5sWQbMcRBAgx6wAhR14TiTSbcpQ25iH8TmqK6P", + block_height: 133425466, + block_timestamp: 1732436019310463200, + }, + receipt_outcome: { + gas_burnt: 2871289854903, + tokens_burnt: 287128985490300000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7Y4aeKzxgoPgUsDKSC89VyVGzzap2vWBthQcZtBz8sgx", + included_in_block_hash: "EJBu1XQKhcZHzkuYVyA8F8sXp4UmXJ95RHbzSY8qUbFB", + block_timestamp: "1732436018195161109", + block: { + block_height: 133425465, + }, + receipt_conversion_tokens_burnt: "31559352697000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 287128985490300000000, + args: '{"proposal": {"kind": {"ChangePolicyUpdateParameters": {"parameters": {"proposal_period": "864000000000000"}}}, "description": "Change proposal period"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 318688338187300000000, + }, + }, + { + id: "10400110219", + receipt_id: "Hw8GTxDSsNuxnezDm4shF67mDTrdcdGYiXF9uoeoRmbG", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "44zjrHAgjQboh9vwEw7wkfdEARAQqbkKL5TrMnYDk9Wi", + block_height: 133425227, + block_timestamp: 1732435752475275800, + }, + receipt_outcome: { + gas_burnt: 223182562500, + tokens_burnt: 22318256250000000000, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "87JjNXxgMmrx44W8QD5U2Xq1LRYk5TmrJsWCY8j1C6oK", + included_in_block_hash: "x8gXvr1YnwTUnk5WqPt636Zhv9JGNiv6ygBx1z1xKxa", + block_timestamp: "1732435750381267779", + block: { + block_height: 133425225, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0, + fee: 22318256250000000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 442002275082800000000, + }, + }, + { + id: "10400110165", + receipt_id: "AMSFtFbfkJJYvuh71HGykhiMrrrsrUHX4dCbyh4yAcaD", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "H6VfySMm3HznCDcxDSwdHT6RuYNkhKv2JAwGLcDcv8tz", + block_height: 133425226, + block_timestamp: 1732435751492974600, + }, + receipt_outcome: { + gas_burnt: 3886634921153, + tokens_burnt: 388663492115300000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "87JjNXxgMmrx44W8QD5U2Xq1LRYk5TmrJsWCY8j1C6oK", + included_in_block_hash: "x8gXvr1YnwTUnk5WqPt636Zhv9JGNiv6ygBx1z1xKxa", + block_timestamp: "1732435750381267779", + block: { + block_height: 133425225, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 388663492115300000000, + args: '{"id": 118, "action": "VoteApprove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 442002275082800000000, + }, + }, + { + id: "10400105937", + receipt_id: "67RddmTzTBWPaJiCwvLaxenXAHpEqTKXzYM8oSgifMHE", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8gFsDuT986KCQUEPonfBHGQNtNixtMQnKLa2rrjTFW2P", + block_height: 133425172, + block_timestamp: 1732435688990069500, + }, + receipt_outcome: { + gas_burnt: 2912755722681, + tokens_burnt: 291275572268100000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FW7oKnkqcwKgMUXGWo1Q8fiBVuSehy6HsvD6hticcxZL", + included_in_block_hash: "D5U5cDLqLvtRV3ftKu9RLWSkAgrxpA644cgYMeivGUJL", + block_timestamp: "1732435687733591498", + block: { + block_height: 133425171, + }, + receipt_conversion_tokens_burnt: "31559352697000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 291275572268100000000, + args: '{"proposal": {"kind": {"ChangePolicyUpdateParameters": {"parameters": {"proposal_period": "518400000000000"}}}, "description": "Change proposal period"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 322834924965100000000, + }, + }, + { + id: "10400071248", + receipt_id: "8mUN7oRgaDKr71iSpMJ2FvwQm2oHhiuxssNhKqr1WywZ", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2npYEUnRDSQFto9yuuXciVyMFWgSnkecXaC9bsFRrBEX", + block_height: 133425048, + block_timestamp: 1732435550101958000, + }, + receipt_outcome: { + gas_burnt: 223182562500, + tokens_burnt: 22318256250000000000, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "99eA5kj1RHHSxaNosSqHjAJuFr97CizJjrMXXb7Wp7o7", + included_in_block_hash: "BgA2aEXibLfs1kB1WJ1Gd1AWcwpLVMoHwBPBKykpNv1w", + block_timestamp: "1732435547931228591", + block: { + block_height: 133425046, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0, + fee: 22318256250000000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 542684172448000000000, + }, + }, + { + id: "10400070662", + receipt_id: "HcYWx1Kz8MMc8VVf8fgPjmGYRCwJdCw7cTG4MHvzA4AV", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "wa2XvwP4e3hqH1jfLPdvzbJn7Qzs9F5iisR9s8w2cPB", + block_height: 133425047, + block_timestamp: 1732435549067875800, + }, + receipt_outcome: { + gas_burnt: 4893453894805, + tokens_burnt: 489345389480500000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "99eA5kj1RHHSxaNosSqHjAJuFr97CizJjrMXXb7Wp7o7", + included_in_block_hash: "BgA2aEXibLfs1kB1WJ1Gd1AWcwpLVMoHwBPBKykpNv1w", + block_timestamp: "1732435547931228591", + block: { + block_height: 133425046, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 489345389480500000000, + args: '{"id": 117, "action": "VoteApprove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 542684172448000000000, + }, + }, + { + id: "10399998757", + receipt_id: "BQYJaZobs2QE8jkxhYoDUq2AH6NtMzpaAVmvDa2dqufh", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "J83W1QfbwsjFMhd7FrFfEBUrNR9ezXP1NRgmE3QSxoQ6", + block_height: 133424899, + block_timestamp: 1732435384406369500, + }, + receipt_outcome: { + gas_burnt: 4755068398307, + tokens_burnt: 475506839830700000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4ucJRwdxL2CsA3akNSvyzT5qhLWgLdAXBtQeyQXSEM2b", + included_in_block_hash: "63DwVDe3ZNTipHeSrDRC5dmm9bBf1KDhTiVakcqH19r7", + block_timestamp: "1732435383163199474", + block: { + block_height: 133424898, + }, + receipt_conversion_tokens_burnt: "74355486909500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 475506839830700000000, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "*:VoteRemove", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "policy_update_parameters:AddProposal", "policy_add_or_update_role:AddProposal", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "megha19.near", "meghagoel.near", "petersalomonsen.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Add allowed proposal kinds"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 549862326740200000000, + }, + }, + { + id: "10372781526", + receipt_id: "HXuUiQAviTCNeUPVibVMvuQfSv63yKh9Lm9x7LPfzfUa", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "A4JyJ3unfYJ2czWv9LPa5DFEEpTKAoegeY1YFcuewH14", + block_height: 133350887, + block_timestamp: 1732351572012133000, + }, + receipt_outcome: { + gas_burnt: 2239359396995, + tokens_burnt: 223935939699500000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "eseGU9orFSN42g7cXxfsGpHiT22cMw9C6KvMneYs3pt", + included_in_block_hash: "HDuDDLFWqHxZprxzxmRry3wz6y4gv31Y2xa3Z4B1NnA", + block_timestamp: "1732351570791569890", + block: { + block_height: 133350886, + }, + receipt_conversion_tokens_burnt: "31554584325500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 223935939699500000000, + args: '{"proposal": {"kind": {"ChangePolicyUpdateParameters": {"parameters": {"proposal_period": "86400000000000"}}}, "description": "Change proposal period"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: false, + }, + outcomes_agg: { + transaction_fee: 255490524025000000000, + }, + }, + { + id: "10267189979", + receipt_id: "4CUUCxG3eXyAFeji563m5ZndpDQxZ1iX5v2HV1i4V5UT", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "58JuWMXg4gQCu5SiMv6f6UvjqueBE4AzfEqyhyZVdtVm", + block_height: 133074700, + block_timestamp: 1732042994973828600, + }, + receipt_outcome: { + gas_burnt: 223182562500, + tokens_burnt: 22318256250000000000, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "H678TmCirpe3TyGnALjTaXDH7fZDYRH5nJNoY8vBZadq", + included_in_block_hash: "DxLBNGodABBKzeei4uriybnFHS12xeDDHbXSiS7N51bx", + block_timestamp: "1732042992756041571", + block: { + block_height: 133074698, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0, + fee: 22318256250000000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 537415322803600000000, + }, + }, + { + id: "10267189476", + receipt_id: "4sZo3jaGm5qysVtaxE7UU2AZTfoviBH3eiAu9kR8JuFc", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "13CdbhRmDvFcE8eFap7TyeqeNkHcpQ19Bcf9o9c5FtSp", + block_height: 133074699, + block_timestamp: 1732042993869794000, + }, + receipt_outcome: { + gas_burnt: 4840765398361, + tokens_burnt: 484076539836100000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "H678TmCirpe3TyGnALjTaXDH7fZDYRH5nJNoY8vBZadq", + included_in_block_hash: "DxLBNGodABBKzeei4uriybnFHS12xeDDHbXSiS7N51bx", + block_timestamp: "1732042992756041571", + block: { + block_height: 133074698, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 484076539836100000000, + args: '{"id": 116, "action": "VoteApprove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 537415322803600000000, + }, + }, + { + id: "10267188839", + receipt_id: "HY6g2CLQEjcJr8H2PQ3WggSNuUA1RyhQ1kvyyciB3wpQ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9tmkZMA59Hark9tLrgQLmCJabCYa3GGYZ2TcRUGPVHYa", + block_height: 133074696, + block_timestamp: 1732042990840714500, + }, + receipt_outcome: { + gas_burnt: 4199218390995, + tokens_burnt: 419921839099500000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2VKB4k46UJ2wZwBCBCYXmuyvxoZjXBPyZhXpXmNYtJVV", + included_in_block_hash: "DBjRMEsddsSjhpG1cbVgv4ntCmw8TsrA9MJnzhRPxouU", + block_timestamp: "1732042989629242995", + block: { + block_height: 133074695, + }, + receipt_conversion_tokens_burnt: "48253421318500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 419921839099500000000, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "*:VoteRemove", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["meghagoel.near", "freski.near", "megha19.near", "petersalomonsen.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 468175260418000000000, + }, + }, + { + id: "10223704134", + receipt_id: "F3A9vkA3K3dDjw9ur8ThsZfUV5juphjD3bEbmRsgoz6d", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "B998A7Vjxr2sqNC7xuTsWmEjukGewTM9Ds8z9ZKEh2Mq", + block_height: 132970409, + block_timestamp: 1731921923899565800, + }, + receipt_outcome: { + gas_burnt: 223182562500, + tokens_burnt: 22318256250000000000, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "Gg6E3qZwLz1yoD3Urr2dqVrppZjkvGmuNpL52zmJVR7k", + included_in_block_hash: "HGSxCUWyTLadAxB78VVGJgCehUyJh5CsCyGmqvQRJGz4", + block_timestamp: "1731921921705748185", + block: { + block_height: 132970407, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0, + fee: 22318256250000000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 529964315392200000000, + }, + }, + { + id: "10223703576", + receipt_id: "8MxXrtJ9KDLMMxpUCrpDzaZ2BbGv3DJeG29vo2YaU4Y9", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HHfN7wj9hMepnwmAvY3JRwv85iPN738eGDongd8JDR68", + block_height: 132970408, + block_timestamp: 1731921922848291000, + }, + receipt_outcome: { + gas_burnt: 4766255324247, + tokens_burnt: 476625532424700000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Gg6E3qZwLz1yoD3Urr2dqVrppZjkvGmuNpL52zmJVR7k", + included_in_block_hash: "HGSxCUWyTLadAxB78VVGJgCehUyJh5CsCyGmqvQRJGz4", + block_timestamp: "1731921921705748185", + block: { + block_height: 132970407, + }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 476625532424700000000, + args: '{"id": 115, "action": "VoteApprove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 529964315392200000000, + }, + }, + { + id: "10223561156", + receipt_id: "G3k7EM5Z68R6A4hLEezgz6u91ByxXWq61cZoiahc3vJt", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4H77qUvmgWQpY3nGcsKFsocgRtMRcA2E3YWqTw4WgwbQ", + block_height: 132970137, + block_timestamp: 1731921611526669300, + }, + receipt_outcome: { + gas_burnt: 4181385964947, + tokens_burnt: 418138596494700000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CKQ526ayqe9BTvLmrnKx4f85itmCPU5oSeGzCVBHVtXU", + included_in_block_hash: "FsLSMBYtiRwN5rsfAYyzcYRBNYR3aGr5Rd48hSQPp5uY", + block_timestamp: "1731921610474316671", + block: { + block_height: 132970136, + }, + receipt_conversion_tokens_burnt: "48143748774000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 418138596494700000000, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["meghagoel.near", "freski.near", "megha19.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 466282345268700000000, + }, + }, + { + id: "10223016065", + receipt_id: "EVwUEVZT2yYXrQjK1MRN5ug6S4EJTFVpik6uFMTPsEto", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "93Xg5YiduUx7tSKNTJgMhRUDx5BZZHndKCYVU92i7J11", + block_height: 132969003, + block_timestamp: 1731920292943543800, + }, + receipt_outcome: { + gas_burnt: 2881363929322, + tokens_burnt: 288136392932200000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CXZyck2aZRLcmNgvWAqewBiYDSwSmqbbjAq63k6yYvpn", + included_in_block_hash: "3sXd1Ef78AckkZE53Pm8KGLRPTVNawNND3tjh19mdrqW", + block_timestamp: "1731920291635012734", + block: { + block_height: 132969002, + }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 288136392932200000000, + args: '{"id": 114, "action": "VoteRemove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 319152151278200000000, + }, + }, + { + id: "10222766407", + receipt_id: "DnQ5Fesd7dCqkcBRwwadBJoTSiKsTRaDimhzL6fboaqJ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "As9zRjFbbs3k9UG4pxoy2o3mEtgQ6putT1w2a8AGR5Uh", + block_height: 132968706, + block_timestamp: 1731919916394594600, + }, + receipt_outcome: { + gas_burnt: 2824900147771, + tokens_burnt: 282490014777100000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AKienJ6xV7SfkH3crtsbAMRvBbenm2TiwLsrXVcEZtUG", + included_in_block_hash: "EjSApLjTnjXjQuyf8Z8tdXDfbATJCB9sgYPByXRTBxyB", + block_timestamp: "1731919915119717031", + block: { + block_height: 132968705, + }, + receipt_conversion_tokens_burnt: "32040958218500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 282490014777100000000, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "", "deposit": "0", "method_name": "deposit_and_stake"}], "receiver_id": "bisontrails.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing delete\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 314530972995600000000, + }, + }, + { + id: "10221376958", + receipt_id: "7j6EAFfVdLtQYSFiV4wkHNAnzWcvcBP1uWy3XwJrSNf1", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GDAXThHruF5rbbhRipxwJDuaQVQPHBoK8cVvbAqcHRcm", + block_height: 132966569, + block_timestamp: 1731917364951132000, + }, + receipt_outcome: { + gas_burnt: 2889821732970, + tokens_burnt: 288982173297000000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7UyHZZi8tGMf5PDeuoWvuPq4tRYwXaS9DbpEK7B19kmv", + included_in_block_hash: "CCMQSBLLBo7jQxC2SiwPqY7dAgDZZBvt6wawpsuEX4MV", + block_timestamp: "1731917363761757699", + block: { + block_height: 132966568, + }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 288982173297000000000, + args: '{"id": 113, "action": "VoteRemove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 319997931643000000000, + }, + }, + { + id: "10221362690", + receipt_id: "mGYnuc4Pd5DYhCmqH8KWT54GHtZGT2hmoiU2htGQrMK", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EwzCZoBHvZJCR6dv8MYnLWNYeCYCqa2JQ2kUizRooEgP", + block_height: 132966550, + block_timestamp: 1731917343777140500, + }, + receipt_outcome: { + gas_burnt: 2750542007327, + tokens_burnt: 275054200732700000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "6g3W25rEZEDxx3ZEhQyzzYM5B34ochT37W1HeUppYDnQ", + included_in_block_hash: "6kMVzU4Tkh1UYnEEGCL4W5cw5ZwmAYzRmn3UKuUhe7Bj", + block_timestamp: "1731917342650042995", + block: { + block_height: 132966549, + }, + receipt_conversion_tokens_burnt: "32517795368500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 275054200732700000000, + args: '{"proposal": {"kind": {"Transfer": {"amount": "200000", "token_id": "usdt.tether-token.near", "receiver_id": "maguila.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-10-14 2024-11-10\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-10-14 2024-11-10\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":252}"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 307571996101200000000, + }, + }, + { + id: "10141373741", + receipt_id: "Dw4fe7zYAzKbPxBNkMGmjo4XWvmFxLdLzhcjqnvz9oB6", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2vyS7dZZvHECXbBkg15VJY5q4oBHn54o47YziWtaepRk", + block_height: 132751163, + block_timestamp: 1731674552392744000, + }, + receipt_outcome: { + gas_burnt: 2225363426046, + tokens_burnt: 222536342604600000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "HNxt6pzkK24umVX7kfK8HvrJ8pwcnRE3fPp7fgT38hRL", + included_in_block_hash: "8P1Xi7tDdyjHD9f82hZMuhjyo3CMT43y3bKxhNazjZ1u", + block_timestamp: "1731674551161124853", + block: { + block_height: 132751162, + }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 222536342604600000000, + args: '{"id": 77, "action": "VoteRemove"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: false, + }, + outcomes_agg: { + transaction_fee: 253547332579100000000, + }, + }, + { + id: "9968072188", + receipt_id: "F3bws6Mttth9jSG6bKQyEinvohwP8GM3QHLiLSvRufYL", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "freski.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "H55krvFqfDqmbFRjmq4gKTdz7cqcyu1DjweZnRhwgzZX", + block_height: 132311080, + block_timestamp: 1731166803333462500, + }, + receipt_outcome: { + gas_burnt: 223182562500, + tokens_burnt: 22318256250000000000, + executor_account_id: "freski.near", + status: true, + }, + transaction_hash: "pGhAU8Wo2CDhde9ti6aD9jbuxCnvovyfyV7q1dYd3pk", + included_in_block_hash: "9WG42Y4viQ3L7ojELy9W9v8yw9YU98e8PDDifZ6fthyz", + block_timestamp: "1731166801116539698", + block: { + block_height: 132311078, + }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0, + fee: 22318256250000000000, + args: null, + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 375824409035600000000, + }, + }, + { + id: "9968071866", + receipt_id: "58wmhctee5VWqGyrkYJQQk351nbZ6H11GHhdbjoEFtPt", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5nCNja6xtpDUw58zrdN3Q7hovrAPLhz8rsJq2HUHg16o", + block_height: 132311079, + block_timestamp: 1731166802311923700, + }, + receipt_outcome: { + gas_burnt: 3224903944396, + tokens_burnt: 322490394439600000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "pGhAU8Wo2CDhde9ti6aD9jbuxCnvovyfyV7q1dYd3pk", + included_in_block_hash: "9WG42Y4viQ3L7ojELy9W9v8yw9YU98e8PDDifZ6fthyz", + block_timestamp: "1731166801116539698", + block: { + block_height: 132311078, + }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0, + fee: 322490394439600000000, + args: '{"id": 112, "action": "VoteReject"}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 375824409035600000000, + }, + }, + { + id: "9968066800", + receipt_id: "41xWTUqX7aeAZjotGWfawMBdkVtvCzx2FGTsKthXhwau", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9NzGQNY6JVPzBKaYo1JHneHyMiKvxAmBHZHYvNUGWFSM", + block_height: 132311056, + block_timestamp: 1731166776491221000, + }, + receipt_outcome: { + gas_burnt: 2810879954867, + tokens_burnt: 281087995486700000000, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "76tcfj4jMnWpwqZ3TvPCkjVbpb3mGah9s16ESnvWWnUZ", + included_in_block_hash: "Ct696NZsrNztEQMfzrN1AvrRG1C5UTu6t8BJDAdavbJz", + block_timestamp: "1731166774973657538", + block: { + block_height: 132311055, + }, + receipt_conversion_tokens_burnt: "32031421475500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0, + fee: 281087995486700000000, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJhbW91bnQiOiIwIn0=", "deposit": "0", "method_name": "unstake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { + deposit: 0, + }, + outcomes: { + status: true, + }, + outcomes_agg: { + transaction_fee: 313119416962200000000, + }, + }, + ], +}; + +let txns = nearblocks_response.txns; + +txns.forEach((txn) => { + console.log(txn.actions[0].method); +}); diff --git a/src/nearblocks_client/mod.rs b/src/nearblocks_client/mod.rs index ee5cc92..5cb4707 100644 --- a/src/nearblocks_client/mod.rs +++ b/src/nearblocks_client/mod.rs @@ -3,6 +3,7 @@ use reqwest::Client; use serde::{Deserialize, Serialize}; pub mod proposal; pub mod rfp; +pub mod sputnik; pub mod transactions; pub mod types; use types::Transaction; diff --git a/src/nearblocks_client/sputnik.json b/src/nearblocks_client/sputnik.json new file mode 100644 index 0000000..387de89 --- /dev/null +++ b/src/nearblocks_client/sputnik.json @@ -0,0 +1,2054 @@ +{ + "cursor": "9968066800", + "txns": [{ + "id": "11369954394", + "receipt_id": "GB6H5dC3neD411G78oA6TzBqXL6ZGoUF7xyNWabmLkF6", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "8P7n37frTjCK5cZ5itgaUj1NVcTHxaPpJzgam3UyphpK", + "block_height": 135106178, + "block_timestamp": 1734344956043450600 + }, + "receipt_outcome": { + "gas_burnt": 4319833044195, + "tokens_burnt": 431983304419500000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "CPVEWWKn2XwMyR2mWg5y8ftsL2sS6Up9SLMfeHpLTQXu", + "included_in_block_hash": "7Kkjf9n9qyX4kRJQ6pivB5fjyGXGZGWkRpyhc3zxK3WY", + "block_timestamp": "1734344954790034570", + "block": { + "block_height": 135106177 + }, + "receipt_conversion_tokens_burnt": "48687343125000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 431983304419500000000, + "args": "{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"*:VoteRemove\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"policy_update_parameters:AddProposal\", \"policy_add_or_update_role:AddProposal\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"megha19.near\", \"meghagoel.near\", \"petersalomonsen.near\", \"frol.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"864000000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update Policy\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 480670647544500000000 + } + }, + { + "id": "11368042777", + "receipt_id": "78i1QinhhM8eK4FTETRQ4jBhihyhzrYtT6PKFWwvtrGm", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "megha19.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "6zYN2GjGof9yiibazpzMQP7sosjcev12vBH4Amua4yBg", + "block_height": 135102877, + "block_timestamp": 1734340801646546200 + }, + "receipt_outcome": { + "gas_burnt": 223182562500, + "tokens_burnt": 22318256250000000000, + "executor_account_id": "megha19.near", + "status": true + }, + "transaction_hash": "Hzh3LJnDHJFBLRKT2e5e7YfTjrmh66wVpK9GCkR9Db6t", + "included_in_block_hash": "Gx2GGFrbpiJtTL4RctbLzMGFCpy4Q3A78143affug4cg", + "block_timestamp": "1734340799052999087", + "block": { + "block_height": 135102875 + }, + "receipt_conversion_tokens_burnt": "31015758346000000000", + "actions": [{ + "action": "TRANSFER", + "method": null, + "deposit": 0, + "fee": 22318256250000000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 381145543250700000000 + } + }, + { + "id": "11368041967", + "receipt_id": "2JG9P6wTKM3x6rtiKCwc2fJF8TnjdngJuyTvmnz1vEhw", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "C49xXh6q57ABPg15BRMwT7svt71De8v1QcdHBm19fwbv", + "block_height": 135102876, + "block_timestamp": 1734340800346017500 + }, + "receipt_outcome": { + "gas_burnt": 3278115286547, + "tokens_burnt": 327811528654700000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "Hzh3LJnDHJFBLRKT2e5e7YfTjrmh66wVpK9GCkR9Db6t", + "included_in_block_hash": "Gx2GGFrbpiJtTL4RctbLzMGFCpy4Q3A78143affug4cg", + "block_timestamp": "1734340799052999087", + "block": { + "block_height": 135102875 + }, + "receipt_conversion_tokens_burnt": "31015758346000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 327811528654700000000, + "args": "{\"id\": 129, \"action\": \"VoteReject\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 381145543250700000000 + } + }, + { + "id": "11368013253", + "receipt_id": "5Sh4eKAHeDCGnnYY6cPUbu9d12vsg31PcADZ2BHiRvzF", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "6Sj1to8G8kggjenKxXSJ519bcaYZ5H5yrXTLyPPXytQB", + "block_height": 135102795, + "block_timestamp": 1734340702309651200 + }, + "receipt_outcome": { + "gas_burnt": 2913798985415, + "tokens_burnt": 291379898541500000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "3gbZU7e9c42TS5ZVXbYWBPVbhC8j4aH9gr6ofXqU9Fyg", + "included_in_block_hash": "H5i7vuSi1Zghw13SMpq7QwmjVAwxqQJmvukmDxFbw8Tg", + "block_timestamp": "1734340701219740273", + "block": { + "block_height": 135102794 + }, + "receipt_conversion_tokens_burnt": "31559352697000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 291379898541500000000, + "args": "{\"proposal\": {\"kind\": {\"ChangePolicyUpdateParameters\": {\"parameters\": {\"proposal_period\": \"950400000000000\"}}}, \"description\": \"Change proposal period\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 322939251238500000000 + } + }, + { + "id": "11367989314", + "receipt_id": "BmvpCjxt4cbCrqjVheyYPPBTtYE7gX6sRStQgJk43QCf", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "E4CxtaBZ6gaApuWQRRu9KmTNi4JQhJNXzxwrsyKVxKBQ", + "block_height": 135102730, + "block_timestamp": 1734340624801901300 + }, + "receipt_outcome": { + "gas_burnt": 2713255968758, + "tokens_burnt": 271325596875800000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": false + }, + "transaction_hash": "7nJpxwPMMm5GioDEQqnFahjdfoFGMQwjBmhLWtqVNrwu", + "included_in_block_hash": "FrCfDWQsPLFCTHcdPiwCmwD1oXVr2tbF8FWZ9JqESouv", + "block_timestamp": "1734340623452087523", + "block": { + "block_height": 135102729 + }, + "receipt_conversion_tokens_burnt": "31015758346000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 271325596875800000000, + "args": "{\"id\": 128, \"action\": \"VoteReject\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": false + }, + "outcomes_agg": { + "transaction_fee": 302341355221800000000 + } + }, + { + "id": "11150945850", + "receipt_id": "C4sUyGYrGYRXnmXfXnLD8HtnsfstYPyDWCTLqeaMPP3Y", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "theori.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "GPB6veEAgqyFVcb7tegfkhjbkueKJfKc9Bub9rFCar9D", + "block_height": 134703868, + "block_timestamp": 1733882659613957400 + }, + "receipt_outcome": { + "gas_burnt": 223182562500, + "tokens_burnt": 22318256250000000000, + "executor_account_id": "theori.near", + "status": true + }, + "transaction_hash": "3jZjrU9LqZLfFP3HeRhEVMJ8foaQghH39kvh51xWfWs9", + "included_in_block_hash": "2pWL8Vo72gDwrvfqHmpF6xxoRhrr3D3m8VqSBJvAg7Ua", + "block_timestamp": "1733882657325144977", + "block": { + "block_height": 134703866 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "TRANSFER", + "method": null, + "deposit": 0, + "fee": 22318256250000000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 538603285960600000000 + } + }, + { + "id": "11150945509", + "receipt_id": "AZneFScvsGnRK8JDwh1HdHxNTd3Hf5YFPsNdV5Hrking", + "predecessor_account_id": "theori.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "GEjwNt1dLrcK6GMJVpStTtDdW8W69puKLJhpFPXTtMRB", + "block_height": 134703867, + "block_timestamp": 1733882658333006600 + }, + "receipt_outcome": { + "gas_burnt": 4852645029931, + "tokens_burnt": 485264502993100000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "3jZjrU9LqZLfFP3HeRhEVMJ8foaQghH39kvh51xWfWs9", + "included_in_block_hash": "2pWL8Vo72gDwrvfqHmpF6xxoRhrr3D3m8VqSBJvAg7Ua", + "block_timestamp": "1733882657325144977", + "block": { + "block_height": 134703866 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 485264502993100000000, + "args": "{\"id\": 128, \"action\": \"VoteApprove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 538603285960600000000 + } + }, + { + "id": "11150943995", + "receipt_id": "4pExm3evPc5UNoNQBuhatzw5QKH38SSzAWvPz4wDwdgL", + "predecessor_account_id": "theori.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "5M1QJ3WtawWxbhMo2ws16hBXsc9kywcjTGa9nwzbeY7m", + "block_height": 134703862, + "block_timestamp": 1733882652896874200 + }, + "receipt_outcome": { + "gas_burnt": 4245699043435, + "tokens_burnt": 424569904343500000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "4DprRkqApkp4Yre9vsoopiK6NcApcnCkaLbEo6MvGyTS", + "included_in_block_hash": "ARL6VGdAuAsnwSo6o9eJsvAZCVS9xcYqgTbHTuVmc3C3", + "block_timestamp": "1733882651674783740", + "block": { + "block_height": 134703861 + }, + "receipt_conversion_tokens_burnt": "48687343125000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 424569904343500000000, + "args": "{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"*:VoteRemove\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"policy_update_parameters:AddProposal\", \"policy_add_or_update_role:AddProposal\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"megha19.near\", \"meghagoel.near\", \"petersalomonsen.near\", \"frol.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"864000000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 473257247468500000000 + } + }, + { + "id": "11150202109", + "receipt_id": "58h5eQ8d1yJhnx3iqFbbh88Db9GRFpGXkeBMAg8aSnxK", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "theori.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "4mkHyvFM7FHNhnsPS3oMF2RDFNFDnHnMgYKPTCU31psk", + "block_height": 134701563, + "block_timestamp": 1733879912444341500 + }, + "receipt_outcome": { + "gas_burnt": 223182562500, + "tokens_burnt": 22318256250000000000, + "executor_account_id": "theori.near", + "status": true + }, + "transaction_hash": "Ex6tKYc35k22oRXDG5yvPFvRXRd6dDj82oMhCU9UtTqR", + "included_in_block_hash": "FpkLSxP8BCBeHNRmhbZce8fzpP4GukMPxsVr925gRC5h", + "block_timestamp": "1733879910006974460", + "block": { + "block_height": 134701561 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "TRANSFER", + "method": null, + "deposit": 0, + "fee": 22318256250000000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 536437364002100000000 + } + }, + { + "id": "11150201675", + "receipt_id": "vdjFgzgBuTBVPRSq5KFgnnwd1iTQAEbFzybABnQnhbK", + "predecessor_account_id": "theori.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "HRYTMdkskTdn2wpaueUj3kJ3C3HnpDnpv4qLucebTvSo", + "block_height": 134701562, + "block_timestamp": 1733879911228003600 + }, + "receipt_outcome": { + "gas_burnt": 4830985810346, + "tokens_burnt": 483098581034600000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "Ex6tKYc35k22oRXDG5yvPFvRXRd6dDj82oMhCU9UtTqR", + "included_in_block_hash": "FpkLSxP8BCBeHNRmhbZce8fzpP4GukMPxsVr925gRC5h", + "block_timestamp": "1733879910006974460", + "block": { + "block_height": 134701561 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 483098581034600000000, + "args": "{\"id\": 127, \"action\": \"VoteApprove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 536437364002100000000 + } + }, + { + "id": "11150200034", + "receipt_id": "8nNvDrhpPeEnpYJEqKs9SwwVFa4CnANn8JXXBoMEvFHA", + "predecessor_account_id": "theori.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "8SDxQdgPy4BBMg3yidLJFyozBQG7jTEZTRnEMMFEhta8", + "block_height": 134701557, + "block_timestamp": 1733879905560422700 + }, + "receipt_outcome": { + "gas_burnt": 4297511363923, + "tokens_burnt": 429751136392300000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "9RdLF5mPt5gJKGUqJApa2n3pWy6VsFg44k4U91fqffTD", + "included_in_block_hash": "8wZhPtUE9YEbK21xZHJ1T6dQJcBnyEYRUvJgiVPmoePo", + "block_timestamp": "1733879904272674011", + "block": { + "block_height": 134701556 + }, + "receipt_conversion_tokens_burnt": "48630122667000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 429751136392300000000, + "args": "{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"*:VoteRemove\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"policy_update_parameters:AddProposal\", \"policy_add_or_update_role:AddProposal\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"megha19.near\", \"meghagoel.near\", \"petersalomonsen.near\", \"frol.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"864000000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 478381259059300000000 + } + }, + { + "id": "10720800369", + "receipt_id": "FTyYZVFAav1UEi9VbosYavpoYepyxCgDWp6M6D9Aw939", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "3Q6Jzu1GYYaX3BuKAkDw7jzCCuUN8fz4rCxcC7d9YAeM", + "block_height": 134214828, + "block_timestamp": 1733324542867720200 + }, + "receipt_outcome": { + "gas_burnt": 2850625428917, + "tokens_burnt": 285062542891700000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "HpbwTiTLtr9UgTEMxUFFZPKeL8P26fWEMSAk3nRhK45b", + "included_in_block_hash": "DP79S6V1pNAwoCCPNZzi4EbU9k4DRVkVxR1wr4FySef8", + "block_timestamp": "1733324541689127587", + "block": { + "block_height": 134214827 + }, + "receipt_conversion_tokens_burnt": "32126788905500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 285062542891700000000, + "args": "{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"\", \"deposit\": \"10000000000000000000000\", \"method_name\": \"deposit_and_stake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"* Proposal Action: stake\\\\\\\\n* Notes: Testing notes\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 317189331797200000000 + } + }, + { + "id": "10720604169", + "receipt_id": "JDXLxzphA1eaZURQho6dhcHQ1DA6e4f2hUVjrN7XJPWK", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "EE2WTftHiqFS93B5RscG2Qeoo15uqAeUXMDLBsws6Uhs", + "block_height": 134214314, + "block_timestamp": 1733323961563307800 + }, + "receipt_outcome": { + "gas_burnt": 2878391097269, + "tokens_burnt": 287839109726900000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "DEgKuPgFcaWNYCt8LKMfnCTea4FAtj8AcPxALKSRgEED", + "included_in_block_hash": "PGB3uBdPbR1SQRfaT9WZRDDuxLaMQuKnd1kmanTKJxh", + "block_timestamp": "1733323960346437884", + "block": { + "block_height": 134214313 + }, + "receipt_conversion_tokens_burnt": "33557300355500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 287839109726900000000, + "args": "{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000\", \"token_id\": \"usdt.tether-token.near\", \"receiver_id\": \"thomasguntenaar.near\"}}, \"description\": \"* Title: DevHub Developer Contributor report by THOMAS for 11/11/2024 \\\\\\\\u{2013}\\\\\\\\u{a0}11/22/2024\\\\\\\\n* Summary: Replacing the indexer infrastructure which we use at devhub to efficiently query data about proposals and rfp\\\\\\\\\\\\'s so we can filter order search in the main dashboards of the events- & infrastructure-committee, the templar instance & devhub itself. Also supporting the treasury dashboards.\\\\\\\\n* Notes: testing\\\\\\\\n* Proposal Id: 260\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 321396410082400000000 + } + }, + { + "id": "10720529640", + "receipt_id": "EikJNrxWrTsFsj46rYVbR75JQEyyNoGV5LrkM5UgjMcM", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "A6YDZ2RttXmUx4enqAFX6jECLRzCUkygdEwRgmTmL8PR", + "block_height": 134214132, + "block_timestamp": 1733323758364167400 + }, + "receipt_outcome": { + "gas_burnt": 2862659748957, + "tokens_burnt": 286265974895700000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "APMLNvBbSKkcdrT2DCB1o4KKBZySrRe4K9z5DvwYG5Sn", + "included_in_block_hash": "D7t1wpJftHPvtVfc4R3SnUXK8N7atp19mtWSMw3sYcfs", + "block_timestamp": "1733323757308472623", + "block": { + "block_height": 134214131 + }, + "receipt_conversion_tokens_burnt": "32889728345500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 286265974895700000000, + "args": "{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"* Title: DevHub Developer Contributor report by Megha for 11/04/2024 - 12/01/2024\\\\\\\\n* Summary: Worked on treasury dashboard, added support for lockup contract, added staking and unstaking, updated dashboard, infinex, helped Thomas with indexer testing.\\\\\\\\n* Notes: testing notes\\\\\\\\n* ProposalId: 266\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 319155703241200000000 + } + }, + { + "id": "10720513722", + "receipt_id": "AuEPYCJYroemnSNvw9wiJtoUteE6jG9MY7V4JCTdjTJb", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "GhemU4nwmykrCyi5ZzRX8rEujETt3CvTR8gN4z5mpDbd", + "block_height": 134214092, + "block_timestamp": 1733323714238445300 + }, + "receipt_outcome": { + "gas_burnt": 2868958055157, + "tokens_burnt": 286895805515700000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "FRgrLB1X5LXQRQUUbbU7gAeBUZMUzwqpepteXVGVGG1H", + "included_in_block_hash": "FTe4cwpXn7V96vPbZ1rYH4AtmEaCQpJgdBC1GvbsVh8L", + "block_timestamp": "1733323713336309823", + "block": { + "block_height": 134214091 + }, + "receipt_conversion_tokens_burnt": "33075694834000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 286895805515700000000, + "args": "{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"* Title: DevRel & DevHub (01 - 30 November) Contributor Report\\\\\\\\n* Summary: Monthly paid developer relations contributor report. These activities aim to onboard more developers to the ecosystem, and assist existing developers with problems or enrich their experience. Activities for the last month can be seen below.\\\\\\\\n* ProposalId: 267\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 319971500349700000000 + } + }, + { + "id": "10648074527", + "receipt_id": "JAw6bLmMdJUgsx1hTWYfJKuHbKpveCRYuhwGww1rR4Wf", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "megha19.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "6mac8ZXePSf29HxWA3jkWV9kqyhwN1wDTRf6z8mG9UJF", + "block_height": 134053019, + "block_timestamp": 1733140424910559700 + }, + "receipt_outcome": { + "gas_burnt": 223182562500, + "tokens_burnt": 22318256250000000000, + "executor_account_id": "megha19.near", + "status": true + }, + "transaction_hash": "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + "included_in_block_hash": "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + "block_timestamp": "1733140420619015943", + "block": { + "block_height": 134053015 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "TRANSFER", + "method": null, + "deposit": 0, + "fee": 22318256250000000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 1.2361571289765e+21 + } + }, + { + "id": "10648073797", + "receipt_id": "8NZx7B87hPwNA1LKLjPejXz5fB3k7rDbrhVQdgANcUTz", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "4DR41Vw6Y1xhqZbVsgPqT8TwibwydMYHAiFhpaf1hEDH", + "block_height": 134053017, + "block_timestamp": 1733140422933179600 + }, + "receipt_outcome": { + "gas_burnt": 3127924417561, + "tokens_burnt": 312792441756100000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + "included_in_block_hash": "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + "block_timestamp": "1733140420619015943", + "block": { + "block_height": 134053015 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "on_proposal_callback", + "deposit": 0, + "fee": 312792441756100000000, + "args": "{\"proposal_id\": 122}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 1.2361571289765e+21 + } + }, + { + "id": "10648073795", + "receipt_id": "9geJZS8dJJeUipbq74f8UEGCWX3LByG1E6phnSzVscPB", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "bisontrails.poolv1.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "4DR41Vw6Y1xhqZbVsgPqT8TwibwydMYHAiFhpaf1hEDH", + "block_height": 134053017, + "block_timestamp": 1733140422933179600 + }, + "receipt_outcome": { + "gas_burnt": 3026095435036, + "tokens_burnt": 302609543503600000000, + "executor_account_id": "bisontrails.poolv1.near", + "status": true + }, + "transaction_hash": "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + "included_in_block_hash": "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + "block_timestamp": "1733140420619015943", + "block": { + "block_height": 134053015 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "unstake", + "deposit": 0, + "fee": 302609543503600000000, + "args": "{\"amount\": \"250000000000000000000000\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 1.2361571289765e+21 + } + }, + { + "id": "10648073416", + "receipt_id": "8a4KWaJ9BhCncnxb6Ao7jiQQhbWFr47eofwyqCuk8DCh", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "DA8RYzaANrJnDs1gJiy8KFSJ42Qh4qNqVsn5p2GsERne", + "block_height": 134053016, + "block_timestamp": 1733140421840036000 + }, + "receipt_outcome": { + "gas_burnt": 3872545268656, + "tokens_burnt": 387254526865600000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + "included_in_block_hash": "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + "block_timestamp": "1733140420619015943", + "block": { + "block_height": 134053015 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 387254526865600000000, + "args": "{\"id\": 122, \"action\": \"VoteApprove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 1.2361571289765e+21 + } + }, + { + "id": "10648069284", + "receipt_id": "BNXhwN4sa2jvtQfFtSbLN4tQmndeSrMFYR1tQokaPhsi", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "BQn8x3TVirjgrxSaY4gL3CorDK7BjMroD4c6ZiCZEW8S", + "block_height": 134053002, + "block_timestamp": 1733140406100546800 + }, + "receipt_outcome": { + "gas_burnt": 2937463757289, + "tokens_burnt": 293746375728900000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "DsK5ZjnGmXQ4qLu9eypZaQGquBRzZLuYRs3j63GmrrUf", + "included_in_block_hash": "EnoCmmFgYf6TASXN3fwcKy8Y1FAZbPtWBSnjyPZ1vLby", + "block_timestamp": "1733140404966551975", + "block": { + "block_height": 134053001 + }, + "receipt_conversion_tokens_burnt": "32174472620500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 293746375728900000000, + "args": "{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJhbW91bnQiOiIyNTAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==\", \"deposit\": \"0\", \"method_name\": \"unstake\"}], \"receiver_id\": \"bisontrails.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null}\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 325920848349400000000 + } + }, + { + "id": "10647933369", + "receipt_id": "ESo2FwdsVTLx7X6eFALMD8B6vQJtvEdkHYiEL7hXScjK", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "megha19.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "HatkhgwuQ3d8GJ4EKhTRMEosv6npaLhXy6JBbtJeeCSr", + "block_height": 134052706, + "block_timestamp": 1733140066661023200 + }, + "receipt_outcome": { + "gas_burnt": 223182562500, + "tokens_burnt": 22318256250000000000, + "executor_account_id": "megha19.near", + "status": true + }, + "transaction_hash": "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + "included_in_block_hash": "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + "block_timestamp": "1733140062280899672", + "block": { + "block_height": 134052702 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "TRANSFER", + "method": null, + "deposit": 0, + "fee": 22318256250000000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 1.2976023778136e+21 + } + }, + { + "id": "10647932407", + "receipt_id": "9C1dgZcP8aJS4xq1Et4e4zHxY5N9eEzZaUqCEmj9SXct", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "ADskNobd8PfxZfQVSHytXLNcqy5Ge9wBWv2dWiBs7hKh", + "block_height": 134052704, + "block_timestamp": 1733140064547454200 + }, + "receipt_outcome": { + "gas_burnt": 3122365808778, + "tokens_burnt": 312236580877800000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + "included_in_block_hash": "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + "block_timestamp": "1733140062280899672", + "block": { + "block_height": 134052702 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "on_proposal_callback", + "deposit": 0, + "fee": 312236580877800000000, + "args": "{\"proposal_id\": 121}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 1.2976023778136e+21 + } + }, + { + "id": "10647932398", + "receipt_id": "F1spBNpqEVJQjwVHoYVcvV5XH9MnKWvsFG2RpCHSLDrX", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "bisontrails.poolv1.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "ADskNobd8PfxZfQVSHytXLNcqy5Ge9wBWv2dWiBs7hKh", + "block_height": 134052704, + "block_timestamp": 1733140064547454200 + }, + "receipt_outcome": { + "gas_burnt": 3653767743965, + "tokens_burnt": 365376774396500000000, + "executor_account_id": "bisontrails.poolv1.near", + "status": true + }, + "transaction_hash": "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + "included_in_block_hash": "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + "block_timestamp": "1733140062280899672", + "block": { + "block_height": 134052702 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "deposit_and_stake", + "deposit": 5e+23, + "fee": 365376774396500000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 1.2976023778136e+21 + } + }, + { + "id": "10647931699", + "receipt_id": "4AJWHiKW3xdXmKQ6QrPQngxRASL2MjN5JjKhCGcCVeYJ", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "37fFFLcdwevxmQ66fWjp7qhfT9QUauPYG12VysJ7vSbo", + "block_height": 134052703, + "block_timestamp": 1733140063423976200 + }, + "receipt_outcome": { + "gas_burnt": 3864884056881, + "tokens_burnt": 386488405688100000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + "included_in_block_hash": "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + "block_timestamp": "1733140062280899672", + "block": { + "block_height": 134052702 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 386488405688100000000, + "args": "{\"id\": 121, \"action\": \"VoteApprove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 1.2976023778136e+21 + } + }, + { + "id": "10647922519", + "receipt_id": "8sb9ksPmcHSLH1AuV9DyQfanD1sHtYxpMxFvn6RcUaqm", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "5defsqWDGsDnkhuMsr1Ngp6XQTiB5Wc35waJBCHZjKKc", + "block_height": 134052682, + "block_timestamp": 1733140040444847400 + }, + "receipt_outcome": { + "gas_burnt": 2935677627509, + "tokens_burnt": 293567762750900000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "CHZPAstbJ2yhKeEzTnxwq3KTHkqwbdhpVTkLYVvmdLRE", + "included_in_block_hash": "7pb3j2iZ1Z14Br3vyV4e98evdVjwwK5s6RKZxG3CnkDe", + "block_timestamp": "1733140038071558701", + "block": { + "block_height": 134052681 + }, + "receipt_conversion_tokens_burnt": "32083873562000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 293567762750900000000, + "args": "{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"\", \"deposit\": \"500000000000000000000000\", \"method_name\": \"deposit_and_stake\"}], \"receiver_id\": \"bisontrails.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 325651636312900000000 + } + }, + { + "id": "10502128620", + "receipt_id": "AdxQe2hUW3XnEt7E4HSjrZtNC9DivmJNmTpLjGrYLTCd", + "predecessor_account_id": "theori.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "J2hCaQDnbX8GeFQmttyxvKPpMPnAGg4qQkNRdCi2tz2Q", + "block_height": 133691943, + "block_timestamp": 1732733071451980500 + }, + "receipt_outcome": { + "gas_burnt": 2896154997999, + "tokens_burnt": 289615499799900000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "GNEUnNkpf9aTE3RRdgoen3zk3R9Hg1TRygR8Fk8XMurY", + "included_in_block_hash": "3D1S5qcv4tQfboZGQHagrYKiCeg4sUfddfaSXfbUfgou", + "block_timestamp": "1732733070349639574", + "block": { + "block_height": 133691942 + }, + "receipt_conversion_tokens_burnt": "31559352697000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 289615499799900000000, + "args": "{\"proposal\": {\"kind\": {\"ChangePolicyUpdateParameters\": {\"parameters\": {\"proposal_period\": \"950400000000000\"}}}, \"description\": \"Change proposal period\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 321174852496900000000 + } + }, + { + "id": "10400226934", + "receipt_id": "2XBgiApgBac5uxRW9MSBdXaBNxXyPUn8EFh4UQGgVW3k", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "petersalomonsen.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "2FmBRr3Hpy69bamEwrFVnk6Gub5neE9Vaj5jAy7foUAW", + "block_height": 133425552, + "block_timestamp": 1732436112636790300 + }, + "receipt_outcome": { + "gas_burnt": 223182562500, + "tokens_burnt": 22318256250000000000, + "executor_account_id": "petersalomonsen.near", + "status": true + }, + "transaction_hash": "ASk12bypjh8c4cP17DyjoqAy7RLnEJ55XEmLDF91tVAB", + "included_in_block_hash": "3DC13HQASejwCLjPgzQ5oRtSu9Rvw72TB2Wfff8ZMJzq", + "block_timestamp": "1732436110418787854", + "block": { + "block_height": 133425550 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "TRANSFER", + "method": null, + "deposit": 0, + "fee": 22318256250000000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 442002275082800000000 + } + }, + { + "id": "10400226636", + "receipt_id": "BthqH69KiBprL6p9rhqFMrTHPrvnFVRzKd45gaeyb1gf", + "predecessor_account_id": "petersalomonsen.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "28P9hn5HovWQeeoYHxdBmdXPdzM7pxQ7WpgEDNbxupDZ", + "block_height": 133425551, + "block_timestamp": 1732436111586207500 + }, + "receipt_outcome": { + "gas_burnt": 3886634921153, + "tokens_burnt": 388663492115300000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "ASk12bypjh8c4cP17DyjoqAy7RLnEJ55XEmLDF91tVAB", + "included_in_block_hash": "3DC13HQASejwCLjPgzQ5oRtSu9Rvw72TB2Wfff8ZMJzq", + "block_timestamp": "1732436110418787854", + "block": { + "block_height": 133425550 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 388663492115300000000, + "args": "{\"id\": 119, \"action\": \"VoteApprove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 442002275082800000000 + } + }, + { + "id": "10400202465", + "receipt_id": "AKZumKZhapwsrTkp49q4yG8QGeU4YNHiMhK5FW4Cv2Yj", + "predecessor_account_id": "petersalomonsen.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "G7d5eK5sWQbMcRBAgx6wAhR14TiTSbcpQ25iH8TmqK6P", + "block_height": 133425466, + "block_timestamp": 1732436019310463200 + }, + "receipt_outcome": { + "gas_burnt": 2871289854903, + "tokens_burnt": 287128985490300000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "7Y4aeKzxgoPgUsDKSC89VyVGzzap2vWBthQcZtBz8sgx", + "included_in_block_hash": "EJBu1XQKhcZHzkuYVyA8F8sXp4UmXJ95RHbzSY8qUbFB", + "block_timestamp": "1732436018195161109", + "block": { + "block_height": 133425465 + }, + "receipt_conversion_tokens_burnt": "31559352697000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 287128985490300000000, + "args": "{\"proposal\": {\"kind\": {\"ChangePolicyUpdateParameters\": {\"parameters\": {\"proposal_period\": \"864000000000000\"}}}, \"description\": \"Change proposal period\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 318688338187300000000 + } + }, + { + "id": "10400110219", + "receipt_id": "Hw8GTxDSsNuxnezDm4shF67mDTrdcdGYiXF9uoeoRmbG", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "petersalomonsen.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "44zjrHAgjQboh9vwEw7wkfdEARAQqbkKL5TrMnYDk9Wi", + "block_height": 133425227, + "block_timestamp": 1732435752475275800 + }, + "receipt_outcome": { + "gas_burnt": 223182562500, + "tokens_burnt": 22318256250000000000, + "executor_account_id": "petersalomonsen.near", + "status": true + }, + "transaction_hash": "87JjNXxgMmrx44W8QD5U2Xq1LRYk5TmrJsWCY8j1C6oK", + "included_in_block_hash": "x8gXvr1YnwTUnk5WqPt636Zhv9JGNiv6ygBx1z1xKxa", + "block_timestamp": "1732435750381267779", + "block": { + "block_height": 133425225 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "TRANSFER", + "method": null, + "deposit": 0, + "fee": 22318256250000000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 442002275082800000000 + } + }, + { + "id": "10400110165", + "receipt_id": "AMSFtFbfkJJYvuh71HGykhiMrrrsrUHX4dCbyh4yAcaD", + "predecessor_account_id": "petersalomonsen.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "H6VfySMm3HznCDcxDSwdHT6RuYNkhKv2JAwGLcDcv8tz", + "block_height": 133425226, + "block_timestamp": 1732435751492974600 + }, + "receipt_outcome": { + "gas_burnt": 3886634921153, + "tokens_burnt": 388663492115300000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "87JjNXxgMmrx44W8QD5U2Xq1LRYk5TmrJsWCY8j1C6oK", + "included_in_block_hash": "x8gXvr1YnwTUnk5WqPt636Zhv9JGNiv6ygBx1z1xKxa", + "block_timestamp": "1732435750381267779", + "block": { + "block_height": 133425225 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 388663492115300000000, + "args": "{\"id\": 118, \"action\": \"VoteApprove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 442002275082800000000 + } + }, + { + "id": "10400105937", + "receipt_id": "67RddmTzTBWPaJiCwvLaxenXAHpEqTKXzYM8oSgifMHE", + "predecessor_account_id": "petersalomonsen.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "8gFsDuT986KCQUEPonfBHGQNtNixtMQnKLa2rrjTFW2P", + "block_height": 133425172, + "block_timestamp": 1732435688990069500 + }, + "receipt_outcome": { + "gas_burnt": 2912755722681, + "tokens_burnt": 291275572268100000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "FW7oKnkqcwKgMUXGWo1Q8fiBVuSehy6HsvD6hticcxZL", + "included_in_block_hash": "D5U5cDLqLvtRV3ftKu9RLWSkAgrxpA644cgYMeivGUJL", + "block_timestamp": "1732435687733591498", + "block": { + "block_height": 133425171 + }, + "receipt_conversion_tokens_burnt": "31559352697000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 291275572268100000000, + "args": "{\"proposal\": {\"kind\": {\"ChangePolicyUpdateParameters\": {\"parameters\": {\"proposal_period\": \"518400000000000\"}}}, \"description\": \"Change proposal period\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 322834924965100000000 + } + }, + { + "id": "10400071248", + "receipt_id": "8mUN7oRgaDKr71iSpMJ2FvwQm2oHhiuxssNhKqr1WywZ", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "petersalomonsen.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "2npYEUnRDSQFto9yuuXciVyMFWgSnkecXaC9bsFRrBEX", + "block_height": 133425048, + "block_timestamp": 1732435550101958000 + }, + "receipt_outcome": { + "gas_burnt": 223182562500, + "tokens_burnt": 22318256250000000000, + "executor_account_id": "petersalomonsen.near", + "status": true + }, + "transaction_hash": "99eA5kj1RHHSxaNosSqHjAJuFr97CizJjrMXXb7Wp7o7", + "included_in_block_hash": "BgA2aEXibLfs1kB1WJ1Gd1AWcwpLVMoHwBPBKykpNv1w", + "block_timestamp": "1732435547931228591", + "block": { + "block_height": 133425046 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "TRANSFER", + "method": null, + "deposit": 0, + "fee": 22318256250000000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 542684172448000000000 + } + }, + { + "id": "10400070662", + "receipt_id": "HcYWx1Kz8MMc8VVf8fgPjmGYRCwJdCw7cTG4MHvzA4AV", + "predecessor_account_id": "petersalomonsen.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "wa2XvwP4e3hqH1jfLPdvzbJn7Qzs9F5iisR9s8w2cPB", + "block_height": 133425047, + "block_timestamp": 1732435549067875800 + }, + "receipt_outcome": { + "gas_burnt": 4893453894805, + "tokens_burnt": 489345389480500000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "99eA5kj1RHHSxaNosSqHjAJuFr97CizJjrMXXb7Wp7o7", + "included_in_block_hash": "BgA2aEXibLfs1kB1WJ1Gd1AWcwpLVMoHwBPBKykpNv1w", + "block_timestamp": "1732435547931228591", + "block": { + "block_height": 133425046 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 489345389480500000000, + "args": "{\"id\": 117, \"action\": \"VoteApprove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 542684172448000000000 + } + }, + { + "id": "10399998757", + "receipt_id": "BQYJaZobs2QE8jkxhYoDUq2AH6NtMzpaAVmvDa2dqufh", + "predecessor_account_id": "petersalomonsen.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "J83W1QfbwsjFMhd7FrFfEBUrNR9ezXP1NRgmE3QSxoQ6", + "block_height": 133424899, + "block_timestamp": 1732435384406369500 + }, + "receipt_outcome": { + "gas_burnt": 4755068398307, + "tokens_burnt": 475506839830700000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "4ucJRwdxL2CsA3akNSvyzT5qhLWgLdAXBtQeyQXSEM2b", + "included_in_block_hash": "63DwVDe3ZNTipHeSrDRC5dmm9bBf1KDhTiVakcqH19r7", + "block_timestamp": "1732435383163199474", + "block": { + "block_height": 133424898 + }, + "receipt_conversion_tokens_burnt": "74355486909500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 475506839830700000000, + "args": "{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"*:VoteRemove\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"policy_update_parameters:AddProposal\", \"policy_add_or_update_role:AddProposal\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"megha19.near\", \"meghagoel.near\", \"petersalomonsen.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Add allowed proposal kinds\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 549862326740200000000 + } + }, + { + "id": "10372781526", + "receipt_id": "HXuUiQAviTCNeUPVibVMvuQfSv63yKh9Lm9x7LPfzfUa", + "predecessor_account_id": "petersalomonsen.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "A4JyJ3unfYJ2czWv9LPa5DFEEpTKAoegeY1YFcuewH14", + "block_height": 133350887, + "block_timestamp": 1732351572012133000 + }, + "receipt_outcome": { + "gas_burnt": 2239359396995, + "tokens_burnt": 223935939699500000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": false + }, + "transaction_hash": "eseGU9orFSN42g7cXxfsGpHiT22cMw9C6KvMneYs3pt", + "included_in_block_hash": "HDuDDLFWqHxZprxzxmRry3wz6y4gv31Y2xa3Z4B1NnA", + "block_timestamp": "1732351570791569890", + "block": { + "block_height": 133350886 + }, + "receipt_conversion_tokens_burnt": "31554584325500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 223935939699500000000, + "args": "{\"proposal\": {\"kind\": {\"ChangePolicyUpdateParameters\": {\"parameters\": {\"proposal_period\": \"86400000000000\"}}}, \"description\": \"Change proposal period\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": false + }, + "outcomes_agg": { + "transaction_fee": 255490524025000000000 + } + }, + { + "id": "10267189979", + "receipt_id": "4CUUCxG3eXyAFeji563m5ZndpDQxZ1iX5v2HV1i4V5UT", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "megha19.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "58JuWMXg4gQCu5SiMv6f6UvjqueBE4AzfEqyhyZVdtVm", + "block_height": 133074700, + "block_timestamp": 1732042994973828600 + }, + "receipt_outcome": { + "gas_burnt": 223182562500, + "tokens_burnt": 22318256250000000000, + "executor_account_id": "megha19.near", + "status": true + }, + "transaction_hash": "H678TmCirpe3TyGnALjTaXDH7fZDYRH5nJNoY8vBZadq", + "included_in_block_hash": "DxLBNGodABBKzeei4uriybnFHS12xeDDHbXSiS7N51bx", + "block_timestamp": "1732042992756041571", + "block": { + "block_height": 133074698 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "TRANSFER", + "method": null, + "deposit": 0, + "fee": 22318256250000000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 537415322803600000000 + } + }, + { + "id": "10267189476", + "receipt_id": "4sZo3jaGm5qysVtaxE7UU2AZTfoviBH3eiAu9kR8JuFc", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "13CdbhRmDvFcE8eFap7TyeqeNkHcpQ19Bcf9o9c5FtSp", + "block_height": 133074699, + "block_timestamp": 1732042993869794000 + }, + "receipt_outcome": { + "gas_burnt": 4840765398361, + "tokens_burnt": 484076539836100000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "H678TmCirpe3TyGnALjTaXDH7fZDYRH5nJNoY8vBZadq", + "included_in_block_hash": "DxLBNGodABBKzeei4uriybnFHS12xeDDHbXSiS7N51bx", + "block_timestamp": "1732042992756041571", + "block": { + "block_height": 133074698 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 484076539836100000000, + "args": "{\"id\": 116, \"action\": \"VoteApprove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 537415322803600000000 + } + }, + { + "id": "10267188839", + "receipt_id": "HY6g2CLQEjcJr8H2PQ3WggSNuUA1RyhQ1kvyyciB3wpQ", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "9tmkZMA59Hark9tLrgQLmCJabCYa3GGYZ2TcRUGPVHYa", + "block_height": 133074696, + "block_timestamp": 1732042990840714500 + }, + "receipt_outcome": { + "gas_burnt": 4199218390995, + "tokens_burnt": 419921839099500000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "2VKB4k46UJ2wZwBCBCYXmuyvxoZjXBPyZhXpXmNYtJVV", + "included_in_block_hash": "DBjRMEsddsSjhpG1cbVgv4ntCmw8TsrA9MJnzhRPxouU", + "block_timestamp": "1732042989629242995", + "block": { + "block_height": 133074695 + }, + "receipt_conversion_tokens_burnt": "48253421318500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 419921839099500000000, + "args": "{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"*:VoteRemove\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"meghagoel.near\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 468175260418000000000 + } + }, + { + "id": "10223704134", + "receipt_id": "F3A9vkA3K3dDjw9ur8ThsZfUV5juphjD3bEbmRsgoz6d", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "megha19.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "B998A7Vjxr2sqNC7xuTsWmEjukGewTM9Ds8z9ZKEh2Mq", + "block_height": 132970409, + "block_timestamp": 1731921923899565800 + }, + "receipt_outcome": { + "gas_burnt": 223182562500, + "tokens_burnt": 22318256250000000000, + "executor_account_id": "megha19.near", + "status": true + }, + "transaction_hash": "Gg6E3qZwLz1yoD3Urr2dqVrppZjkvGmuNpL52zmJVR7k", + "included_in_block_hash": "HGSxCUWyTLadAxB78VVGJgCehUyJh5CsCyGmqvQRJGz4", + "block_timestamp": "1731921921705748185", + "block": { + "block_height": 132970407 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "TRANSFER", + "method": null, + "deposit": 0, + "fee": 22318256250000000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 529964315392200000000 + } + }, + { + "id": "10223703576", + "receipt_id": "8MxXrtJ9KDLMMxpUCrpDzaZ2BbGv3DJeG29vo2YaU4Y9", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "HHfN7wj9hMepnwmAvY3JRwv85iPN738eGDongd8JDR68", + "block_height": 132970408, + "block_timestamp": 1731921922848291000 + }, + "receipt_outcome": { + "gas_burnt": 4766255324247, + "tokens_burnt": 476625532424700000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "Gg6E3qZwLz1yoD3Urr2dqVrppZjkvGmuNpL52zmJVR7k", + "included_in_block_hash": "HGSxCUWyTLadAxB78VVGJgCehUyJh5CsCyGmqvQRJGz4", + "block_timestamp": "1731921921705748185", + "block": { + "block_height": 132970407 + }, + "receipt_conversion_tokens_burnt": "31020526717500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 476625532424700000000, + "args": "{\"id\": 115, \"action\": \"VoteApprove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 529964315392200000000 + } + }, + { + "id": "10223561156", + "receipt_id": "G3k7EM5Z68R6A4hLEezgz6u91ByxXWq61cZoiahc3vJt", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "4H77qUvmgWQpY3nGcsKFsocgRtMRcA2E3YWqTw4WgwbQ", + "block_height": 132970137, + "block_timestamp": 1731921611526669300 + }, + "receipt_outcome": { + "gas_burnt": 4181385964947, + "tokens_burnt": 418138596494700000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "CKQ526ayqe9BTvLmrnKx4f85itmCPU5oSeGzCVBHVtXU", + "included_in_block_hash": "FsLSMBYtiRwN5rsfAYyzcYRBNYR3aGr5Rd48hSQPp5uY", + "block_timestamp": "1731921610474316671", + "block": { + "block_height": 132970136 + }, + "receipt_conversion_tokens_burnt": "48143748774000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 418138596494700000000, + "args": "{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"meghagoel.near\", \"freski.near\", \"megha19.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 466282345268700000000 + } + }, + { + "id": "10223016065", + "receipt_id": "EVwUEVZT2yYXrQjK1MRN5ug6S4EJTFVpik6uFMTPsEto", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "93Xg5YiduUx7tSKNTJgMhRUDx5BZZHndKCYVU92i7J11", + "block_height": 132969003, + "block_timestamp": 1731920292943543800 + }, + "receipt_outcome": { + "gas_burnt": 2881363929322, + "tokens_burnt": 288136392932200000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "CXZyck2aZRLcmNgvWAqewBiYDSwSmqbbjAq63k6yYvpn", + "included_in_block_hash": "3sXd1Ef78AckkZE53Pm8KGLRPTVNawNND3tjh19mdrqW", + "block_timestamp": "1731920291635012734", + "block": { + "block_height": 132969002 + }, + "receipt_conversion_tokens_burnt": "31015758346000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 288136392932200000000, + "args": "{\"id\": 114, \"action\": \"VoteRemove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 319152151278200000000 + } + }, + { + "id": "10222766407", + "receipt_id": "DnQ5Fesd7dCqkcBRwwadBJoTSiKsTRaDimhzL6fboaqJ", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "As9zRjFbbs3k9UG4pxoy2o3mEtgQ6putT1w2a8AGR5Uh", + "block_height": 132968706, + "block_timestamp": 1731919916394594600 + }, + "receipt_outcome": { + "gas_burnt": 2824900147771, + "tokens_burnt": 282490014777100000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "AKienJ6xV7SfkH3crtsbAMRvBbenm2TiwLsrXVcEZtUG", + "included_in_block_hash": "EjSApLjTnjXjQuyf8Z8tdXDfbATJCB9sgYPByXRTBxyB", + "block_timestamp": "1731919915119717031", + "block": { + "block_height": 132968705 + }, + "receipt_conversion_tokens_burnt": "32040958218500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 282490014777100000000, + "args": "{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"\", \"deposit\": \"0\", \"method_name\": \"deposit_and_stake\"}], \"receiver_id\": \"bisontrails.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing delete\\\\\\\\\\\\\\\"}\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 314530972995600000000 + } + }, + { + "id": "10221376958", + "receipt_id": "7j6EAFfVdLtQYSFiV4wkHNAnzWcvcBP1uWy3XwJrSNf1", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "GDAXThHruF5rbbhRipxwJDuaQVQPHBoK8cVvbAqcHRcm", + "block_height": 132966569, + "block_timestamp": 1731917364951132000 + }, + "receipt_outcome": { + "gas_burnt": 2889821732970, + "tokens_burnt": 288982173297000000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "7UyHZZi8tGMf5PDeuoWvuPq4tRYwXaS9DbpEK7B19kmv", + "included_in_block_hash": "CCMQSBLLBo7jQxC2SiwPqY7dAgDZZBvt6wawpsuEX4MV", + "block_timestamp": "1731917363761757699", + "block": { + "block_height": 132966568 + }, + "receipt_conversion_tokens_burnt": "31015758346000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 288982173297000000000, + "args": "{\"id\": 113, \"action\": \"VoteRemove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 319997931643000000000 + } + }, + { + "id": "10221362690", + "receipt_id": "mGYnuc4Pd5DYhCmqH8KWT54GHtZGT2hmoiU2htGQrMK", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "EwzCZoBHvZJCR6dv8MYnLWNYeCYCqa2JQ2kUizRooEgP", + "block_height": 132966550, + "block_timestamp": 1731917343777140500 + }, + "receipt_outcome": { + "gas_burnt": 2750542007327, + "tokens_burnt": 275054200732700000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "6g3W25rEZEDxx3ZEhQyzzYM5B34ochT37W1HeUppYDnQ", + "included_in_block_hash": "6kMVzU4Tkh1UYnEEGCL4W5cw5ZwmAYzRmn3UKuUhe7Bj", + "block_timestamp": "1731917342650042995", + "block": { + "block_height": 132966549 + }, + "receipt_conversion_tokens_burnt": "32517795368500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 275054200732700000000, + "args": "{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"200000\", \"token_id\": \"usdt.tether-token.near\", \"receiver_id\": \"maguila.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-10-14 2024-11-10\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-10-14 2024-11-10\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":252}\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 307571996101200000000 + } + }, + { + "id": "10141373741", + "receipt_id": "Dw4fe7zYAzKbPxBNkMGmjo4XWvmFxLdLzhcjqnvz9oB6", + "predecessor_account_id": "megha19.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "2vyS7dZZvHECXbBkg15VJY5q4oBHn54o47YziWtaepRk", + "block_height": 132751163, + "block_timestamp": 1731674552392744000 + }, + "receipt_outcome": { + "gas_burnt": 2225363426046, + "tokens_burnt": 222536342604600000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": false + }, + "transaction_hash": "HNxt6pzkK24umVX7kfK8HvrJ8pwcnRE3fPp7fgT38hRL", + "included_in_block_hash": "8P1Xi7tDdyjHD9f82hZMuhjyo3CMT43y3bKxhNazjZ1u", + "block_timestamp": "1731674551161124853", + "block": { + "block_height": 132751162 + }, + "receipt_conversion_tokens_burnt": "31010989974500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 222536342604600000000, + "args": "{\"id\": 77, \"action\": \"VoteRemove\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": false + }, + "outcomes_agg": { + "transaction_fee": 253547332579100000000 + } + }, + { + "id": "9968072188", + "receipt_id": "F3bws6Mttth9jSG6bKQyEinvohwP8GM3QHLiLSvRufYL", + "predecessor_account_id": "testing-astradao.sputnik-dao.near", + "receiver_account_id": "freski.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "H55krvFqfDqmbFRjmq4gKTdz7cqcyu1DjweZnRhwgzZX", + "block_height": 132311080, + "block_timestamp": 1731166803333462500 + }, + "receipt_outcome": { + "gas_burnt": 223182562500, + "tokens_burnt": 22318256250000000000, + "executor_account_id": "freski.near", + "status": true + }, + "transaction_hash": "pGhAU8Wo2CDhde9ti6aD9jbuxCnvovyfyV7q1dYd3pk", + "included_in_block_hash": "9WG42Y4viQ3L7ojELy9W9v8yw9YU98e8PDDifZ6fthyz", + "block_timestamp": "1731166801116539698", + "block": { + "block_height": 132311078 + }, + "receipt_conversion_tokens_burnt": "31015758346000000000", + "actions": [{ + "action": "TRANSFER", + "method": null, + "deposit": 0, + "fee": 22318256250000000000, + "args": null + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 375824409035600000000 + } + }, + { + "id": "9968071866", + "receipt_id": "58wmhctee5VWqGyrkYJQQk351nbZ6H11GHhdbjoEFtPt", + "predecessor_account_id": "freski.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "5nCNja6xtpDUw58zrdN3Q7hovrAPLhz8rsJq2HUHg16o", + "block_height": 132311079, + "block_timestamp": 1731166802311923700 + }, + "receipt_outcome": { + "gas_burnt": 3224903944396, + "tokens_burnt": 322490394439600000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "pGhAU8Wo2CDhde9ti6aD9jbuxCnvovyfyV7q1dYd3pk", + "included_in_block_hash": "9WG42Y4viQ3L7ojELy9W9v8yw9YU98e8PDDifZ6fthyz", + "block_timestamp": "1731166801116539698", + "block": { + "block_height": 132311078 + }, + "receipt_conversion_tokens_burnt": "31015758346000000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "act_proposal", + "deposit": 0, + "fee": 322490394439600000000, + "args": "{\"id\": 112, \"action\": \"VoteReject\"}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 375824409035600000000 + } + }, + { + "id": "9968066800", + "receipt_id": "41xWTUqX7aeAZjotGWfawMBdkVtvCzx2FGTsKthXhwau", + "predecessor_account_id": "freski.near", + "receiver_account_id": "testing-astradao.sputnik-dao.near", + "receipt_kind": "ACTION", + "receipt_block": { + "block_hash": "9NzGQNY6JVPzBKaYo1JHneHyMiKvxAmBHZHYvNUGWFSM", + "block_height": 132311056, + "block_timestamp": 1731166776491221000 + }, + "receipt_outcome": { + "gas_burnt": 2810879954867, + "tokens_burnt": 281087995486700000000, + "executor_account_id": "testing-astradao.sputnik-dao.near", + "status": true + }, + "transaction_hash": "76tcfj4jMnWpwqZ3TvPCkjVbpb3mGah9s16ESnvWWnUZ", + "included_in_block_hash": "Ct696NZsrNztEQMfzrN1AvrRG1C5UTu6t8BJDAdavbJz", + "block_timestamp": "1731166774973657538", + "block": { + "block_height": 132311055 + }, + "receipt_conversion_tokens_burnt": "32031421475500000000", + "actions": [{ + "action": "FUNCTION_CALL", + "method": "add_proposal", + "deposit": 0, + "fee": 281087995486700000000, + "args": "{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJhbW91bnQiOiIwIn0=\", \"deposit\": \"0\", \"method_name\": \"unstake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}" + }], + "actions_agg": { + "deposit": 0 + }, + "outcomes": { + "status": true + }, + "outcomes_agg": { + "transaction_fee": 313119416962200000000 + } + } + ] +} \ No newline at end of file diff --git a/src/nearblocks_client/sputnik.rs b/src/nearblocks_client/sputnik.rs new file mode 100644 index 0000000..fe8af37 --- /dev/null +++ b/src/nearblocks_client/sputnik.rs @@ -0,0 +1,244 @@ +use crate::db::db_types::SputnikProposalSnapshotRecord; +use crate::db::DB; +use crate::entrypoints::sputnik::sputnik_types::{Action, ProposalKind}; +use crate::nearblocks_client::types::Transaction; +use crate::rpc_service::RpcService; // BLOCK_HEIGHT_OFFSET +use near_account_id::AccountId; +use regex::Regex; +use rocket::{http::Status, State}; +use serde::{Deserialize, Serialize}; +use serde_json::Value; + +use super::types::BLOCK_HEIGHT_OFFSET; + +#[derive(Serialize, Deserialize, Clone)] +pub struct AddProposalArgs { + pub proposal: ProposalInput, +} + +#[derive(Serialize, Deserialize, Clone)] +pub struct ProposalInput { + pub description: String, + pub kind: ProposalKind, +} + +#[derive(Serialize, Deserialize)] // Clone +pub struct ActProposalArgs { + pub id: i64, + pub action: Action, + pub memo: Option, +} + +fn parse_key_to_readable_format(key: &str) -> String { + // Replace underscores with spaces + let key = key.replace('_', " "); + + // Add spaces between camelCase or PascalCase words + let re = Regex::new(r"([a-z])([A-Z])").unwrap(); + let key = re.replace_all(&key, "$1 $2"); + + // Capitalize each word + key.split_whitespace() + .map(|word| { + let mut chars = word.chars(); + match chars.next() { + Some(first_char) => first_char.to_uppercase().collect::() + chars.as_str(), + None => String::new(), + } + }) + .collect::>() + .join(" ") +} + +fn decode_proposal_description(key: &str, description: &str) -> String { + // Try to parse as JSON + if let Ok(parsed_data) = serde_json::from_str::(description) { + if let Some(value) = parsed_data.get(key) { + return value.as_str().unwrap_or("parsed error 1.").to_string(); + } + } + + // Handle as markdown + let markdown_key = parse_key_to_readable_format(key); + let re = Regex::new(r"^\* (.+): (.+)$").unwrap(); + + for line in description.split("
") { + if let Some(captures) = re.captures(line) { + let current_key = captures.get(1).map_or("", |m| m.as_str()); + let value = captures.get(2).map_or("", |m| m.as_str()); + + if current_key == markdown_key { + return value.trim().to_string(); + } + } + } + + "key not found".to_string() // Return None if key not found +} + +pub async fn handle_add_proposal( + transaction: Transaction, + db: &State, + contract: &AccountId, +) -> Result<(), Status> { + // let action = transaction + // .actions + // .as_ref() + // .and_then(|actions| actions.first()) + // .ok_or(Status::InternalServerError)?; + // let json_args = action.args.clone(); + // let args: AddProposalArgs = serde_json::from_str(&json_args.unwrap_or_default()).unwrap(); + + let rpc_service = RpcService::new(contract); + + // get last proposal id + let last_proposal_id = match rpc_service + .get_last_dao_proposal_id_on_block( + transaction.receipt_block.block_height + BLOCK_HEIGHT_OFFSET, + ) + .await + { + Ok(last_proposal_id) => last_proposal_id.data, + Err(e) => { + eprintln!("Failed to get last dao proposal id on block: {:?}", e); + return Err(Status::InternalServerError); + } + }; + + println!("Last proposal id: {}", last_proposal_id); + + // TODO either check get the last dao proposal id on block or just add 1 to the id. + // on block => BLOCK_HEIGHT_OFFSET ? + // let proposal_id = last_proposal_id + 1; + + let daop = match rpc_service + .get_dao_proposal_on_block( + last_proposal_id, + transaction.receipt_block.block_height + BLOCK_HEIGHT_OFFSET, + ) + .await + { + Ok(daop) => daop, + Err(e) => { + eprintln!( + "Failed to get dao proposal on block: {:?}, block_height: {}", + e, transaction.receipt_block.block_height + ); + println!( + "Skipping proposal, probably deleted, id:{}", + last_proposal_id + ); + return Ok(()); + } + }; + + println!("Proposal: {:?}", daop.id); + + let proposal_action = decode_proposal_description("isStakeRequest", &daop.proposal.description); // TODO check v1 isStakeRequest as well + + println!("Proposal action: {}", proposal_action); + let mut tx = db.begin().await.map_err(|e| { + eprintln!("Failed to begin transaction: {:?}", e); + Status::InternalServerError + })?; + + let record = SputnikProposalSnapshotRecord { + description: daop.proposal.description, + id: daop.id.try_into().unwrap(), + kind: serde_json::to_value(daop.proposal.kind).unwrap(), + proposer: daop.proposal.proposer.to_string(), + status: daop.proposal.status.to_string(), + submission_time: daop.proposal.submission_time.0 as i64, + vote_counts: serde_json::to_value(daop.proposal.vote_counts).unwrap(), + votes: serde_json::to_value(&daop.proposal.votes).unwrap(), + total_votes: daop.proposal.votes.len() as i64, + dao_instance: contract.to_string(), + proposal_action, + tx_timestamp: transaction.block_timestamp.parse::().unwrap(), + hash: transaction.transaction_hash, + }; + + println!("Inserting proposal snapshot {:?}", record); + DB::upsert_dao_proposal_snapshot(&mut tx, record) + .await + .map_err(|e| { + eprintln!("Failed to insert transactions {}: {:?}", transaction.id, e); + Status::InternalServerError + })?; + + println!("Inserted proposal snapshot {}", daop.id); + + Ok(()) +} + +// TODO: instead of arguments parsing get the updated version of the proposal from the contract via the RPC +pub async fn handle_act_proposal( + transaction: Transaction, + db: &State, + contract: &AccountId, +) -> Result<(), rocket::http::Status> { + let action = transaction + .actions + .as_ref() + .and_then(|actions| actions.first()) + .ok_or(Status::InternalServerError)?; + + let json_args = action.args.clone(); + + let args: ActProposalArgs = serde_json::from_str(&json_args.unwrap_or_default()).unwrap(); + + let proposal_id = args.id; + // let action = args.action; + + let rpc_service = RpcService::new(contract); + + let dao_proposal = match rpc_service + .get_dao_proposal_on_block( + proposal_id, + transaction.receipt_block.block_height + BLOCK_HEIGHT_OFFSET, + ) + .await + { + Ok(dao_proposal) => dao_proposal, + Err(e) => { + eprintln!("Failed to get dao proposal: {:?}", e); + // TODO + println!("Skipping proposal {:?}", proposal_id); + return Ok(()); + } + }; + + let proposal_action = + decode_proposal_description("proposal_action", &dao_proposal.proposal.description); // TODO check v1 isStakeRequest as well + + let mut tx = db.begin().await.map_err(|e| { + eprintln!("Failed to begin transaction: {:?}", e); + Status::InternalServerError + })?; + + DB::upsert_dao_proposal_snapshot( + &mut tx, + SputnikProposalSnapshotRecord { + description: dao_proposal.proposal.description, + id: dao_proposal.id.try_into().unwrap(), + kind: serde_json::to_value(dao_proposal.proposal.kind).unwrap(), + proposer: dao_proposal.proposal.proposer.to_string(), + status: dao_proposal.proposal.status.to_string(), + submission_time: dao_proposal.proposal.submission_time.0 as i64, + vote_counts: serde_json::to_value(dao_proposal.proposal.vote_counts).unwrap(), + votes: serde_json::to_value(&dao_proposal.proposal.votes).unwrap(), + total_votes: dao_proposal.proposal.votes.len() as i64, + dao_instance: contract.to_string(), + proposal_action, + tx_timestamp: transaction.block_timestamp.parse::().unwrap(), + hash: transaction.transaction_hash, + }, + ) + .await + .map_err(|e| { + eprintln!("Failed to insert transactions {}: {:?}", transaction.id, e); + Status::InternalServerError + })?; + + Ok(()) +} diff --git a/src/nearblocks_client/test.js b/src/nearblocks_client/test.js new file mode 100644 index 0000000..2aa55d7 --- /dev/null +++ b/src/nearblocks_client/test.js @@ -0,0 +1,16651 @@ +let txns = [ + { + id: "3014732217", + receipt_id: "HyxfzQjo27pMzkHRPpAFU74RsZ9WnW6nJwWeYmvFUmr6", + predecessor_account_id: "sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8CSwV93KdEXGckzkF89as5qwttXxJtRTP6Cf8F67Y7Wk", + block_height: 114444537, + block_timestamp: 1710057937278001200, + }, + receipt_outcome: { + gas_burnt: 42919049933669.0, + tokens_burnt: 4.2919049933669e21, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HVuWjFHUEigwUrTJhrKv7qCBWbtGvU2frjbW5R1jTRpw", + included_in_block_hash: "DF6stLuhM7XHgWrXbx6wFHbC1313p3TL63VjoTPyvY3c", + block_timestamp: "1710057934643716218", + block: { block_height: 114444535 }, + receipt_conversion_tokens_burnt: "243401839201800000000", + actions: [ + { + action: "CREATE_ACCOUNT", + method: null, + deposit: 0.0, + fee: 4.2919049933669e21, + args: null, + }, + { + action: "TRANSFER", + method: null, + deposit: 6e24, + fee: 4.2919049933669e21, + args: null, + }, + { + action: "DEPLOY_CONTRACT", + method: null, + deposit: 0.0, + fee: 4.2919049933669e21, + args: null, + }, + { + action: "FUNCTION_CALL", + method: "new", + deposit: 0.0, + fee: 4.2919049933669e21, + args: '{"bond": "100000000000000000000000", "config": {"name": "testing-astradao", "purpose": "", "metadata": "eyJsaW5rcyI6W10sImZsYWdDb3ZlciI6IiIsImZsYWdMb2dvIjoiIiwiZGlzcGxheU5hbWUiOiJ0ZXN0aW5nLWFzdHJhZGFvIiwibGVnYWwiOnsibGVnYWxTdGF0dXMiOiIiLCJsZWdhbExpbmsiOiIifX0="}, "policy": {"roles": [{"kind": {"Group": ["megha19.near"]}, "name": "council", "slug": "council", "permissions": ["*:Finalize", "policy:AddProposal", "add_bounty:AddProposal", "bounty_done:AddProposal", "transfer:AddProposal", "vote:AddProposal", "remove_member_from_role:AddProposal", "add_member_to_role:AddProposal", "config:AddProposal", "call:AddProposal", "upgrade_remote:AddProposal", "upgrade_self:AddProposal", "set_vote_token:AddProposal", "policy:VoteApprove", "policy:VoteReject", "policy:VoteRemove", "add_bounty:VoteApprove", "add_bounty:VoteReject", "add_bounty:VoteRemove", "bounty_done:VoteApprove", "bounty_done:VoteReject", "bounty_done:VoteRemove", "transfer:VoteApprove", "transfer:VoteReject", "transfer:VoteRemove", "vote:VoteApprove", "vote:VoteReject", "vote:VoteRemove", "remove_member_from_role:VoteApprove", "remove_member_from_role:VoteReject", "remove_member_from_role:VoteRemove", "add_member_to_role:VoteApprove", "add_member_to_role:VoteReject", "add_member_to_role:VoteRemove", "call:VoteApprove", "call:VoteReject", "call:VoteRemove", "config:VoteApprove", "config:VoteReject", "config:VoteRemove", "set_vote_token:VoteApprove", "set_vote_token:VoteReject", "set_vote_token:VoteRemove", "upgrade_self:VoteApprove", "upgrade_self:VoteReject", "upgrade_self:VoteRemove", "upgrade_remote:VoteApprove", "upgrade_remote:VoteReject", "upgrade_remote:VoteRemove"], "vote_policy": {}}, {"kind": "Everyone", "name": "all", "slug": "all", "permissions": [], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}, "purpose": "", "vote_period": "604800000000000", "grace_period": "86400000000000"}', + }, + ], + actions_agg: { deposit: 6e24 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.653457230164e21 }, + }, + { + id: "3052290046", + receipt_id: "27bDmugezLM4ix6k3844t3nmnBPRSC4AnvZi8EZwPQUS", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7LGSEhHCsegjt6Z5TD4bnKnF7fT3dYhrHwwLhHe7mfAW", + block_height: 114574671, + block_timestamp: 1710256458583110400, + }, + receipt_outcome: { + gas_burnt: 4592548607174.0, + tokens_burnt: 4.592548607174e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5njATosfPzwRyCPEKrM69xzhEwT5wQkMKsSgn7NaemLe", + included_in_block_hash: "AYhuUCKU6GP2NMoCWk5jRMcG8qSBQL6gAzrLWR5hEqax", + block_timestamp: "1710256456184779894", + block: { block_height: 114574670 }, + receipt_conversion_tokens_burnt: "243385516883600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.592548607174e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["megha19.near"]}, "name": "council", "permissions": ["add_member_to_role:AddProposal", "bounty_done:VoteApprove", "add_bounty:VoteReject", "add_bounty:AddProposal", "config:VoteReject", "add_bounty:VoteApprove", "remove_member_from_role:VoteReject", "policy:VoteRemove", "transfer:VoteRemove", "vote:VoteApprove", "upgrade_self:VoteApprove", "call:VoteRemove", "upgrade_self:AddProposal", "upgrade_remote:AddProposal", "upgrade_remote:VoteReject", "upgrade_remote:VoteApprove", "vote:AddProposal", "add_member_to_role:VoteReject", "bounty_done:VoteReject", "call:AddProposal", "upgrade_self:VoteRemove", "add_bounty:VoteRemove", "remove_member_from_role:VoteRemove", "config:VoteRemove", "call:VoteApprove", "add_member_to_role:VoteRemove", "policy:AddProposal", "add_member_to_role:VoteApprove", "policy:VoteApprove", "transfer:VoteApprove", "config:AddProposal", "*:Finalize", "remove_member_from_role:VoteApprove", "set_vote_token:VoteReject", "bounty_done:AddProposal", "set_vote_token:AddProposal", "policy:VoteReject", "set_vote_token:VoteRemove", "remove_member_from_role:AddProposal", "transfer:VoteReject", "transfer:AddProposal", "call:VoteReject", "upgrade_remote:VoteRemove", "upgrade_self:VoteReject", "vote:VoteReject", "bounty_done:VoteRemove", "vote:VoteRemove", "set_vote_token:VoteApprove", "config:VoteApprove"], "vote_policy": {"call": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}}}, {"kind": "Everyone", "name": "all", "permissions": [], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.026403776010001e20 }, + }, + { + id: "3052302651", + receipt_id: "99A6c8JsK7MQa4k4FsubEECn2kyG5tukzCSSzZ1uGqUQ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3s8aSMWqWCdxEhHoNeiPeM3mUymu6BGodoSoUq5oB8JA", + block_height: 114574719, + block_timestamp: 1710256557466913000, + }, + receipt_outcome: { + gas_burnt: 5352795418999.0, + tokens_burnt: 5.352795418999e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "6AKb3CrieYZ7UCQDYfREdBAs1EXv4xHP4M15VhxofCiz", + included_in_block_hash: "GsUSV6vSuxTP56QmWcJL6S3Kp8Uu9G1MUA2HjkFNrtKT", + block_timestamp: "1710256555456231796", + block: { block_height: 114574718 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 5.352795418999e20, + args: '{"id": 0, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.003995126661001e20 }, + }, + { + id: "3052302959", + receipt_id: "CmFtgg7WF2TTE99PP1oe1svf3JqaNVj7xjCeeStG5u5o", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "G6PDV3iNAjGf5Z57uU6SCBTWGS5StN79RTQ5TCj81okR", + block_height: 114574720, + block_timestamp: 1710256559589314800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "6AKb3CrieYZ7UCQDYfREdBAs1EXv4xHP4M15VhxofCiz", + included_in_block_hash: "GsUSV6vSuxTP56QmWcJL6S3Kp8Uu9G1MUA2HjkFNrtKT", + block_timestamp: "1710256555456231796", + block: { block_height: 114574718 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.003995126661001e20 }, + }, + { + id: "3066618980", + receipt_id: "9VH8tNay3Sg3vN9QUn375FNREfYMdFLmDAJAuU7Qenjv", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5C1DkG6sbXq4a92xiyhFBuhJLmzqGPZdeZ92xEgPT3Gh", + block_height: 114643599, + block_timestamp: 1710353783217085700, + }, + receipt_outcome: { + gas_burnt: 4737302537718.0, + tokens_burnt: 4.737302537718e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CisBWQFbpCNhu91ss5FExT1gMDT6g8hfKmuGwB1VFnFu", + included_in_block_hash: "sqhgTrDicSQLuvtxs6dhvZcieVn2ku6z9qeKidfaaMk", + block_timestamp: "1710353781842603145", + block: { block_height: 114643598 }, + receipt_conversion_tokens_burnt: "243389094378000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.737302537718e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["megha19.near", "saswat_m.near"]}, "name": "council", "permissions": ["add_member_to_role:AddProposal", "bounty_done:VoteApprove", "add_bounty:VoteReject", "add_bounty:AddProposal", "config:VoteReject", "add_bounty:VoteApprove", "remove_member_from_role:VoteReject", "policy:VoteRemove", "transfer:VoteRemove", "vote:VoteApprove", "upgrade_self:VoteApprove", "call:VoteRemove", "upgrade_self:AddProposal", "upgrade_remote:AddProposal", "upgrade_remote:VoteReject", "upgrade_remote:VoteApprove", "vote:AddProposal", "add_member_to_role:VoteReject", "bounty_done:VoteReject", "call:AddProposal", "upgrade_self:VoteRemove", "add_bounty:VoteRemove", "remove_member_from_role:VoteRemove", "config:VoteRemove", "call:VoteApprove", "add_member_to_role:VoteRemove", "policy:AddProposal", "add_member_to_role:VoteApprove", "policy:VoteApprove", "transfer:VoteApprove", "config:AddProposal", "*:Finalize", "remove_member_from_role:VoteApprove", "set_vote_token:VoteReject", "bounty_done:AddProposal", "set_vote_token:AddProposal", "policy:VoteReject", "set_vote_token:VoteRemove", "remove_member_from_role:AddProposal", "transfer:VoteReject", "transfer:AddProposal", "call:VoteReject", "upgrade_remote:VoteRemove", "upgrade_self:VoteReject", "vote:VoteReject", "bounty_done:VoteRemove", "vote:VoteRemove", "set_vote_token:VoteApprove", "config:VoteApprove"], "vote_policy": {"call": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}}}, {"kind": "Everyone", "name": "all", "permissions": [], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.171193481498e20 }, + }, + { + id: "3066624621", + receipt_id: "45E5BYvhFsZEgMxSdnF3PAUaiCxDDruegyLR1fq27czJ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DizQcaW4Qtsd6kab8fdk3refoDVwY5rc8CvfXg4rSDwr", + block_height: 114643623, + block_timestamp: 1710353815704097000, + }, + receipt_outcome: { + gas_burnt: 5555215204609.0, + tokens_burnt: 5.555215204609001e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4jLJHNpMmwYqX3gcmV8juJuEHn1TrYb13cKnjw3nXAYd", + included_in_block_hash: "4mw3Sm769gebh4rPoY3QcQwPkcnFZBgF4B2C6J9TdgHk", + block_timestamp: "1710353814431657214", + block: { block_height: 114643622 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 5.555215204609001e20, + args: '{"id": 1, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.206414912270999e20 }, + }, + { + id: "3066624810", + receipt_id: "AdgTxkLQjrMVHgwye1kb5BDcMzoZY1Xys7NwQH6QMT2J", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3ieHwevvc1rh7ypXEG4oErDHrU8qDuBG3HPoxfXMB6P9", + block_height: 114643624, + block_timestamp: 1710353817100145200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "4jLJHNpMmwYqX3gcmV8juJuEHn1TrYb13cKnjw3nXAYd", + included_in_block_hash: "4mw3Sm769gebh4rPoY3QcQwPkcnFZBgF4B2C6J9TdgHk", + block_timestamp: "1710353814431657214", + block: { block_height: 114643622 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.206414912270999e20 }, + }, + { + id: "3095358578", + receipt_id: "HNszYA4Drx73HoSDjG6SamvEo4agyorUBAYGHjbn3mu4", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3HKxr6NYCLQ93iNqUapF4sv4PVtZYJSc2fqk4PaHGYaV", + block_height: 114749184, + block_timestamp: 1710496826996008700, + }, + receipt_outcome: { + gas_burnt: 4735953577373.0, + tokens_burnt: 4.735953577373e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EzsZq6y84FvaxrbxZxxFDkB7PndHhDde11XkxzMkakvN", + included_in_block_hash: "5VitXhx8YjifkPVwxfZg83BgNYEFcsczikK2Zk47onRo", + block_timestamp: "1710496825578067534", + block: { block_height: 114749183 }, + receipt_conversion_tokens_burnt: "243394237026200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.735953577373e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["saswat_m.near", "megha19.near", "sdfhbsadhbvhfgb.near"]}, "name": "council", "permissions": ["add_member_to_role:AddProposal", "bounty_done:VoteApprove", "add_bounty:VoteReject", "add_bounty:AddProposal", "config:VoteReject", "add_bounty:VoteApprove", "remove_member_from_role:VoteReject", "policy:VoteRemove", "transfer:VoteRemove", "vote:VoteApprove", "upgrade_self:VoteApprove", "call:VoteRemove", "upgrade_self:AddProposal", "upgrade_remote:AddProposal", "upgrade_remote:VoteReject", "upgrade_remote:VoteApprove", "vote:AddProposal", "add_member_to_role:VoteReject", "bounty_done:VoteReject", "call:AddProposal", "upgrade_self:VoteRemove", "add_bounty:VoteRemove", "remove_member_from_role:VoteRemove", "config:VoteRemove", "call:VoteApprove", "add_member_to_role:VoteRemove", "policy:AddProposal", "add_member_to_role:VoteApprove", "policy:VoteApprove", "transfer:VoteApprove", "config:AddProposal", "*:Finalize", "remove_member_from_role:VoteApprove", "set_vote_token:VoteReject", "bounty_done:AddProposal", "set_vote_token:AddProposal", "policy:VoteReject", "set_vote_token:VoteRemove", "remove_member_from_role:AddProposal", "transfer:VoteReject", "transfer:AddProposal", "call:VoteReject", "upgrade_remote:VoteRemove", "upgrade_self:VoteReject", "vote:VoteReject", "bounty_done:VoteRemove", "vote:VoteRemove", "set_vote_token:VoteApprove", "config:VoteApprove"], "vote_policy": {"call": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}}}, {"kind": "Everyone", "name": "all", "permissions": [], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.169895947635e20 }, + }, + { + id: "3468708387", + receipt_id: "C82T9N6dkHT6AZFPn88oak88wycW13cuczSwaEeUe8YN", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6r4PDemB19q7D1ccdsfoDnXnAXEJUSFdYRPoym9LvZFJ", + block_height: 115908380, + block_timestamp: 1711962411512679200, + }, + receipt_outcome: { + gas_burnt: 3876890660255.0, + tokens_burnt: 3.876890660255e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BWtnjbnLyAnLh3yN9GcY1LQ5uPU1NwV2qFEnmZVABNhx", + included_in_block_hash: "6cB9u1paadaNCGrfdLJunAH6jPp7z3M9vEmB7ogvhXjT", + block_timestamp: "1711962410112016482", + block: { block_height: 115908379 }, + receipt_conversion_tokens_burnt: "242974999401200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 3.876890660255e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJkYXRhIjp7InRlc3RpbmctYXN0cmFkYW8uc3B1dG5pay1kYW8ubmVhciI6eyJwb3N0Ijp7Im1haW4iOiJ7XCJ0eXBlXCI6XCJtZFwiLFwidGV4dFwiOlwiSGkgTkVBUiwgdGhpcyBpcyBteSBmaXJzdCBjb21tZW50IHVzaW5nIEFzdHJhKysgZmVlZCdzIGNvbXBvc2UuXFxuY2M6IEBzYXN3YXRfbS5uZWFyXCJ9In0sImluZGV4Ijp7InBvc3QiOiJ7XCJrZXlcIjpcIm1haW5cIixcInZhbHVlXCI6e1widHlwZVwiOlwibWRcIn19Iiwibm90aWZ5Ijoie1wia2V5XCI6XCJzYXN3YXRfbS5uZWFyXCIsXCJ2YWx1ZVwiOntcInR5cGVcIjpcIm1lbnRpb25cIixcIml0ZW1cIjp7XCJ0eXBlXCI6XCJzb2NpYWxcIixcInBhdGhcIjpcInRlc3RpbmctYXN0cmFkYW8uc3B1dG5pay1kYW8ubmVhci9wb3N0L21haW5cIn19fSJ9fX0sIm9wdGlvbnMiOnsicmVmdW5kX3VudXNlZF9kZXBvc2l0Ijp0cnVlfX0=", "deposit": "100000000000000000000000", "method_name": "set"}], "receiver_id": "social.near"}}, "description": "Social Feed post"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 6.306640654267e20 }, + }, + { + id: "3468722137", + receipt_id: "8VzPQ4hcVNaPb5cEV2zVTvLCne51xwaK3DEmVwqbaTvm", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "B3fS9vdUMH7keXVvA1QTZnMKRA4GMPctTFZTFf2QeyBM", + block_height: 115908412, + block_timestamp: 1711962454341464000, + }, + receipt_outcome: { + gas_burnt: 4018206238513.0, + tokens_burnt: 4.018206238513e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "48ojJ7aRdsuvsuyizqJyYBa3Phh2ijA5WAMjrG35v6zj", + included_in_block_hash: "9ZdSR3uA5j8k6tDXyCq4Qzs8M8urAFSEzzFVovq8zbad", + block_timestamp: "1711962452969838554", + block: { block_height: 115908411 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.018206238513e20, + args: '{"id": 3, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 6.446223383674999e20 }, + }, + { + id: "3470350689", + receipt_id: "9WmuZsM3ckP41Ka9MiSoRn3EzEhovYwxMURCsoawEjxL", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "CMQEcxRnVWsqZ4mPxVGTbXcVeY8TinwiM4MhKm2REBdt", + block_height: 115912014, + block_timestamp: 1711967201519570000, + }, + receipt_outcome: { + gas_burnt: 9044875646458.0, + tokens_burnt: 9.044875646458001e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2zo4pXQUEzt2y8cpCAEhjuV1Nz4EQxSzhkH9QirTd53d", + included_in_block_hash: "6SAJ1eNGmxEgc5VCDVSpxAZnchiPnyTnjpXCJqMaS7Ks", + block_timestamp: "1711967200319522261", + block: { block_height: 115912013 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 9.044875646458001e20, + args: '{"id": 3, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.5451735968103e21 }, + }, + { + id: "3470351386", + receipt_id: "361azTa37xUn93Cau5vvb67PVCF2KAH9D2hvHh7JDs3R", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "social.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HuqGExvcgFUgcX8vtf3ym5NHQ8DTrkwqEpqJ6d2foox6", + block_height: 115912015, + block_timestamp: 1711967202824539400, + }, + receipt_outcome: { + gas_burnt: 9413957597627.0, + tokens_burnt: 9.413957597627001e20, + executor_account_id: "social.near", + status: true, + }, + transaction_hash: "2zo4pXQUEzt2y8cpCAEhjuV1Nz4EQxSzhkH9QirTd53d", + included_in_block_hash: "6SAJ1eNGmxEgc5VCDVSpxAZnchiPnyTnjpXCJqMaS7Ks", + block_timestamp: "1711967200319522261", + block: { block_height: 115912013 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "set", + deposit: 1e23, + fee: 9.413957597627001e20, + args: '{"data": {"testing-astradao.sputnik-dao.near": {"post": {"main": "{\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"md\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Hi NEAR, this is my first comment using Astra++ feed\\\\\\\\\\\\\'s compose.\\\\\\\\\\\\\\\\ncc: @saswat_m.near\\\\\\\\\\\\\\"}"}, "index": {"post": "{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"main\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"md\\\\\\\\\\\\\\"}}", "notify": "{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"saswat_m.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"mention\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"item\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"social\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"path\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"testing-astradao.sputnik-dao.near/post/main\\\\\\\\\\\\\\"}}}"}}}, "options": {"refund_unused_deposit": true}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.5451735968103e21 }, + }, + { + id: "3470351388", + receipt_id: "4vhT1XKswhpQJUz3vyoHxHYioHbnW5oV4KozbcE8XjYc", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HuqGExvcgFUgcX8vtf3ym5NHQ8DTrkwqEpqJ6d2foox6", + block_height: 115912015, + block_timestamp: 1711967202824539400, + }, + receipt_outcome: { + gas_burnt: 4118520453856.0, + tokens_burnt: 4.118520453856e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2zo4pXQUEzt2y8cpCAEhjuV1Nz4EQxSzhkH9QirTd53d", + included_in_block_hash: "6SAJ1eNGmxEgc5VCDVSpxAZnchiPnyTnjpXCJqMaS7Ks", + block_timestamp: "1711967200319522261", + block: { block_height: 115912013 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 4.118520453856e20, + args: '{"proposal_id": 3}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.5451735968103e21 }, + }, + { + id: "3470351775", + receipt_id: "t8TqkF8bCyvCox1V9vGyWTvUcHbXnMeP9YpjFmVrBPY", + predecessor_account_id: "social.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9z4xkPFUkuDYSdZdumTFibGvSPWjNB5Uge8fPeW5FT3j", + block_height: 115912016, + block_timestamp: 1711967204270353200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2zo4pXQUEzt2y8cpCAEhjuV1Nz4EQxSzhkH9QirTd53d", + included_in_block_hash: "6SAJ1eNGmxEgc5VCDVSpxAZnchiPnyTnjpXCJqMaS7Ks", + block_timestamp: "1711967200319522261", + block: { block_height: 115912013 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 8.127e22, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.5451735968103e21 }, + }, + { + id: "3470352354", + receipt_id: "8em8kwmZqCEh5vQNr5VseYyz5yPvgi8y1jNTgojyqN2K", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7EbCmsoXDpT69xjCQRorQW2ZDEJ1j4aW5dt2hEa1crnp", + block_height: 115912017, + block_timestamp: 1711967205560257800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "2zo4pXQUEzt2y8cpCAEhjuV1Nz4EQxSzhkH9QirTd53d", + included_in_block_hash: "6SAJ1eNGmxEgc5VCDVSpxAZnchiPnyTnjpXCJqMaS7Ks", + block_timestamp: "1711967200319522261", + block: { block_height: 115912013 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.5451735968103e21 }, + }, + { + id: "3470411008", + receipt_id: "5fpL4NCh3XabfisdmXYMFNGTf4H8DShgCTc4JLXmdgWM", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7j6aDKJsAKtKqwb8uxRLQKS5BNnEaaSGGdTRjBmMuvGt", + block_height: 115912145, + block_timestamp: 1711967375222766600, + }, + receipt_outcome: { + gas_burnt: 3254416535167.0, + tokens_burnt: 3.254416535167e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "5bcd83wDR6mZTKD6N5ZMuVwSgrWCgN6ocrsLiKS9f9G3", + included_in_block_hash: "Rin16ndgfAtera8VdfK1cAmuPLdBSZNaXQei8xpb7en", + block_timestamp: "1711967373874131604", + block: { block_height: 115912144 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.254416535167e20, + args: '{"id": 3, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 5.682433680329e20 }, + }, + { + id: "3686561426", + receipt_id: "EAu7wpyE5U6ShnMXoVo39ANyDZajXh1vZRTdpNtzqEYj", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8WxuTehT5HGaNfSjFkVtLeY22AQRjHXrB9T7zb7AVKM3", + block_height: 116399518, + block_timestamp: 1712586665062990600, + }, + receipt_outcome: { + gas_burnt: 3854466916391.0, + tokens_burnt: 3.854466916391e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HYQZtj5r2k9xYSVw1RNThXjsgHKUP96c5UhPP5kBdYFT", + included_in_block_hash: "AevADCjzG2LjqBwPBKb4wnpM62bc7qN4qtpsajw2eGLp", + block_timestamp: "1712586663177653721", + block: { block_height: 116399517 }, + receipt_conversion_tokens_burnt: "242917983084200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 3.854466916391e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJkYXRhIjp7InRlc3RpbmctYXN0cmFkYW8uc3B1dG5pay1kYW8ubmVhciI6eyJwb3N0Ijp7Im1haW4iOiJ7XCJ0eXBlXCI6XCJtZFwiLFwidGV4dFwiOlwiSGV5ISwgVGhpcyBpcyBteSBmaXJzdCBjb21tZW50ICMxXCJ9In0sImluZGV4Ijp7InBvc3QiOiJ7XCJrZXlcIjpcIm1haW5cIixcInZhbHVlXCI6e1widHlwZVwiOlwibWRcIn19In19fSwib3B0aW9ucyI6eyJyZWZ1bmRfdW51c2VkX2RlcG9zaXQiOnRydWV9fQ==", "deposit": "100000000000000000000000", "method_name": "set"}], "receiver_id": "social.near"}}, "description": "Social Feed post created by saswat_m.near"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 6.283646747233e20 }, + }, + { + id: "3686592613", + receipt_id: "wnU5RkfFxKGp7fuNEUyjbbHZ4uYA5QxoPyE7zS7FotB", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "22vR3WHAbEgRozPU6NyrwaG8m8vrheYMXTsXTEqqDitU", + block_height: 116399567, + block_timestamp: 1712586726227320800, + }, + receipt_outcome: { + gas_burnt: 3809462192513.0, + tokens_burnt: 3.809462192513e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "E8t8HgnWbuMrTBanhjtp5cC8TXv73PYV7dn6TYHFTMYc", + included_in_block_hash: "2AYSJqw54H3VcwRtgqLP5nr2vE3NeBYYuKDmpUFsuLsH", + block_timestamp: "1712586725102350484", + block: { block_height: 116399566 }, + receipt_conversion_tokens_burnt: "242912616842600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 3.809462192513e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJkYXRhIjp7InRlc3RpbmctYXN0cmFkYW8uc3B1dG5pay1kYW8ubmVhciI6eyJwb3N0Ijp7Im1haW4iOiJ7XCJ0eXBlXCI6XCJtZFwiLFwidGV4dFwiOlwiVGVzdCBjb21tZW50ICMyXCJ9In0sImluZGV4Ijp7InBvc3QiOiJ7XCJrZXlcIjpcIm1haW5cIixcInZhbHVlXCI6e1widHlwZVwiOlwibWRcIn19In19fSwib3B0aW9ucyI6eyJyZWZ1bmRfdW51c2VkX2RlcG9zaXQiOnRydWV9fQ==", "deposit": "100000000000000000000000", "method_name": "set"}], "receiver_id": "social.near"}}, "description": "Social Feed post created by saswat_m.near"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 6.238588360939e20 }, + }, + { + id: "3688074114", + receipt_id: "GeYpSFaeePzqRFateCZn2gR5RSLpowggsKKeJQE3FgoH", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9UgZpRBTabMgB5gBSYWvAXAJFWfUDEf3sxbZgcEhykmy", + block_height: 116402941, + block_timestamp: 1712590968491960600, + }, + receipt_outcome: { + gas_burnt: 3966600640033.0, + tokens_burnt: 3.966600640033e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EDnWYHEoLfV8mAY8LXdEkVMmSN6sSmX3hJM8rwgFtvQb", + included_in_block_hash: "ARpDP7vx21gKr8xnY5XbNkSVjAk8QNjLxesRfNfgqzWk", + block_timestamp: "1712590967297512345", + block: { block_height: 116402940 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.966600640033e20, + args: '{"id": 5, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 6.394617785195e20 }, + }, + { + id: "3688109400", + receipt_id: "5rp7CvKM8vnhwdSV6BAsg5ucBwhDg2JP9CbCodtWU67k", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DwNExVhrGhX9wxuuGr2guWPwYdrN3SpiBkfxx8ed4Gwq", + block_height: 116403009, + block_timestamp: 1712591051879944700, + }, + receipt_outcome: { + gas_burnt: 8989386722367.0, + tokens_burnt: 8.989386722367e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2tAmB5KW5sidD4Rm93FSkqVD7gtdFp1LAHytu91NjA6m", + included_in_block_hash: "238SJAHF52w7prTi1sjvGX3vVCBJHBy2hRtcyYPo7YPF", + block_timestamp: "1712591050954838787", + block: { block_height: 116403008 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 8.989386722367e20, + args: '{"id": 5, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.292885228339e21 }, + }, + { + id: "3688109834", + receipt_id: "H4dcBRshckUvY8rLiQpV1WdqPk3mqy5KT6UMcX3epz5W", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "social.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "724m3ivCw2hVy6hcPrDSqHm5jFQdQRFFfHNPHV6K2AH", + block_height: 116403010, + block_timestamp: 1712591052989102000, + }, + receipt_outcome: { + gas_burnt: 6887957177869.0, + tokens_burnt: 6.887957177869e20, + executor_account_id: "social.near", + status: true, + }, + transaction_hash: "2tAmB5KW5sidD4Rm93FSkqVD7gtdFp1LAHytu91NjA6m", + included_in_block_hash: "238SJAHF52w7prTi1sjvGX3vVCBJHBy2hRtcyYPo7YPF", + block_timestamp: "1712591050954838787", + block: { block_height: 116403008 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "set", + deposit: 1e23, + fee: 6.887957177869e20, + args: '{"data": {"testing-astradao.sputnik-dao.near": {"post": {"main": "{\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"md\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Test comment #2\\\\\\\\\\\\\\"}"}, "index": {"post": "{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"main\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"md\\\\\\\\\\\\\\"}}"}}}, "options": {"refund_unused_deposit": true}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.292885228339e21 }, + }, + { + id: "3688109841", + receipt_id: "CzFA63udjNhvNX3B7uo3qaDyGM8BmPXkzGdemdHsihkY", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "724m3ivCw2hVy6hcPrDSqHm5jFQdQRFFfHNPHV6K2AH", + block_height: 116403010, + block_timestamp: 1712591052989102000, + }, + receipt_outcome: { + gas_burnt: 4177126112992.0, + tokens_burnt: 4.177126112992e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2tAmB5KW5sidD4Rm93FSkqVD7gtdFp1LAHytu91NjA6m", + included_in_block_hash: "238SJAHF52w7prTi1sjvGX3vVCBJHBy2hRtcyYPo7YPF", + block_timestamp: "1712591050954838787", + block: { block_height: 116403008 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 4.177126112992e20, + args: '{"proposal_id": 5}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.292885228339e21 }, + }, + { + id: "3688110202", + receipt_id: "5o7cNWrMER4HPj134ZSSdY18QE6J8YZatZHdZMKQ8mDn", + predecessor_account_id: "social.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5dNWHfMZS5Q9w8z6NRhy4sK4XtNwuo7JfSDubZrdvTNm", + block_height: 116403011, + block_timestamp: 1712591054216916500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2tAmB5KW5sidD4Rm93FSkqVD7gtdFp1LAHytu91NjA6m", + included_in_block_hash: "238SJAHF52w7prTi1sjvGX3vVCBJHBy2hRtcyYPo7YPF", + block_timestamp: "1712591050954838787", + block: { block_height: 116403008 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.292885228339e21 }, + }, + { + id: "3688110509", + receipt_id: "9DRfn6kHJMCgZXWPEqTaf9yM7werLWFFGnUKkeSFrG2f", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "saswat_m.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DvHCEN6bH1Zd1VC4rKTz8TA17CeTaQq6B8SfHExMwTNB", + block_height: 116403012, + block_timestamp: 1712591055333251300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "saswat_m.near", + status: true, + }, + transaction_hash: "2tAmB5KW5sidD4Rm93FSkqVD7gtdFp1LAHytu91NjA6m", + included_in_block_hash: "238SJAHF52w7prTi1sjvGX3vVCBJHBy2hRtcyYPo7YPF", + block_timestamp: "1712591050954838787", + block: { block_height: 116403008 }, + receipt_conversion_tokens_burnt: "242801714516200000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.292885228339e21 }, + }, + { + id: "4010315273", + receipt_id: "FpSGrpGcGnwbYPUXsy5npv7mi8aiCtHXzNpZxLANR9Vd", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "F7XgTKCrawiHLeS9wtJzVy52RwAbuvrnysnb8UApm8YM", + block_height: 117175963, + block_timestamp: 1713535690186721800, + }, + receipt_outcome: { + gas_burnt: 2701527022795.0, + tokens_burnt: 2.7015270227949997e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "F1Lofj3eZbZKw2qQryXKHteh792LEYorzRBFjVqg9DcJ", + included_in_block_hash: "A5p1butgGfWiW4jGbFJDUVHeJZp8Wfk2NM78qquLaX7i", + block_timestamp: "1713535688972817234", + block: { block_height: 117175962 }, + receipt_conversion_tokens_burnt: "30837029482600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.7015270227949997e20, + args: '{"proposal": {"kind": {"RemoveMemberFromRole": {"role": "council", "member_id": "saswat_m.near"}}, "description": "Remove DAO member"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.0098973176210004e20 }, + }, + { + id: "4010677451", + receipt_id: "82cyEvFB8eLAZZYwEkXnQ9BfLBE1MS4F51wAcEmZFKT8", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9CoquunJ63DgfF9buMVvd8WNB85Fwmi9Y95qQT2r2Pxy", + block_height: 117176810, + block_timestamp: 1713536844767375600, + }, + receipt_outcome: { + gas_burnt: 2943806403925.0, + tokens_burnt: 2.9438064039250002e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3iwxHknGnEjZxw6KieTmLJQEUTGWr9pKAQMVZER9DSNR", + included_in_block_hash: "2vZqNArjs5HwLTnQa56B1PbCsCnGzd3x7g1VHjHHCqKi", + block_timestamp: "1713536841595250364", + block: { block_height: 117176808 }, + receipt_conversion_tokens_burnt: "30815564516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.9438064039250002e20, + args: '{"id": 6, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.251962049087e20 }, + }, + { + id: "4011845507", + receipt_id: "HncCoAkKT16JR6Vi6M2Ba8LnGT8e55komq32gGqB74UD", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BoK1bE2vB8rZVmpF5FGVBTuJyWptNECAFuq4wSRqXGvU", + block_height: 117179740, + block_timestamp: 1713540769626294800, + }, + receipt_outcome: { + gas_burnt: 3660478013191.0, + tokens_burnt: 3.660478013191e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BNyifWWwuy2kMG4Z6FDDvQErdpe9UmuhbHBdayn1icAc", + included_in_block_hash: "5GwxptYZdpwt8tU4nVeCVEUwAkQoMUsQ36BKMha2gd7g", + block_timestamp: "1713540768211724315", + block: { block_height: 117179739 }, + receipt_conversion_tokens_burnt: "30815564516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.660478013191e20, + args: '{"id": 6, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.191816220853e20 }, + }, + { + id: "4011846389", + receipt_id: "Gybn6XtxnLp6wHUmpqm22pgwFnuVwjc8yuTwqHPBLzbv", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Fys95vYyBcWMUxdwk7mVaJ4mrov9YGepjspLXVbLMf47", + block_height: 117179743, + block_timestamp: 1713540773877209900, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "BNyifWWwuy2kMG4Z6FDDvQErdpe9UmuhbHBdayn1icAc", + included_in_block_hash: "5GwxptYZdpwt8tU4nVeCVEUwAkQoMUsQ36BKMha2gd7g", + block_timestamp: "1713540768211724315", + block: { block_height: 117179739 }, + receipt_conversion_tokens_burnt: "30815564516200000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.191816220853e20 }, + }, + { + id: "4194308218", + receipt_id: "aYEDVuA49dRwLYNuVV8dGnGVV2ix37555vLAFwFaWrM", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FWH8sPBbGwhPD4e6rLvngcozgASQEC56anbcPSruKbVF", + block_height: 117643303, + block_timestamp: 1714109354344831200, + }, + receipt_outcome: { + gas_burnt: 1648211478885.0, + tokens_burnt: 1.648211478885e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "BynbiYyDdwJZnqFi952Ekv49KmAqi6viksdzvGv3WJ4P", + included_in_block_hash: "2CjqYt6xH2BGS2uH7gSQxE13H1LR2m6YE4uJyQm8cu61", + block_timestamp: "1714109351766473017", + block: { block_height: 117643301 }, + receipt_conversion_tokens_burnt: "30856258515000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 1.648211478885e20, + args: '{"proposal": {"kind": {"AddBounty": {"bounty": {"times": "5", "token": "", "amount": "10000000000000000000000", "description": "Tetsing bounty using Astra++", "max_deadline": "360000000"}}}, "description": "New Bounty created"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 1.956774064035e20 }, + }, + { + id: "4194326581", + receipt_id: "D76hMjSY3eKbWCixuPcBQxHtNLrFKoBEdQUhGV7qiaW4", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6NnhzShoHBCS5ZmDzuMnyU86eeVTrnQ27DDyX7jzHSni", + block_height: 117643361, + block_timestamp: 1714109423719831600, + }, + receipt_outcome: { + gas_burnt: 2774912705224.0, + tokens_burnt: 2.774912705224e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HwUEcETm99f2MQhNFxSQHeN9NJswzrSYVvaPYND4fmA8", + included_in_block_hash: "9JijFUJkKMNRqcfV5smvDg4zopo8ZcsGXY8fhGd8FUQF", + block_timestamp: "1714109422474287653", + block: { block_height: 117643360 }, + receipt_conversion_tokens_burnt: "30855811328200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.774912705224e20, + args: '{"proposal": {"kind": {"AddBounty": {"bounty": {"times": 5, "token": "", "amount": "10000000000000000000000", "description": "Testing bounty using Astra++", "max_deadline": "360000000"}}}, "description": "New Bounty created"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.0834708185059996e20 }, + }, + { + id: "4194347925", + receipt_id: "Gd2LZcgm1j9iZfhgPZYp6jAyM6K7duiCvrLuGV7k68Uy", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DGaj2zoTcNKNVth9YSufmmdiJFeDmRgPziaKXwVT53LM", + block_height: 117643432, + block_timestamp: 1714109503668043000, + }, + receipt_outcome: { + gas_burnt: 3260743930900.0, + tokens_burnt: 3.2607439308999996e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "ANvX1xR9piGSLwrezqgabuEx8ERZBL9Fef4tFyN8DDDg", + included_in_block_hash: "3JYrnWBJBCsYkHMfRX9d1T5GSvxG97Ho7UDJ5maT4wnk", + block_timestamp: "1714109502387530799", + block: { block_height: 117643431 }, + receipt_conversion_tokens_burnt: "30815564516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.2607439308999996e20, + args: '{"id": 7, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.7920821385619997e20 }, + }, + { + id: "4194348411", + receipt_id: "8XbrLXGSW4PcpHfEMj7XgUHQLc7v3D6G59E3jDv6uKEh", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7eK46iu6Ur3h2ztoEPjUbrso3aZYxUMbT29E5C2PEgZ7", + block_height: 117643433, + block_timestamp: 1714109504923302100, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "ANvX1xR9piGSLwrezqgabuEx8ERZBL9Fef4tFyN8DDDg", + included_in_block_hash: "3JYrnWBJBCsYkHMfRX9d1T5GSvxG97Ho7UDJ5maT4wnk", + block_timestamp: "1714109502387530799", + block: { block_height: 117643431 }, + receipt_conversion_tokens_burnt: "30815564516200000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.7920821385619997e20 }, + }, + { + id: "4194562565", + receipt_id: "buTPDi7oexkJ783VB2qbamQ461dFFUcMebiWMYxyGrc", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "C3oAeWFvx4ycCgBV1WjDTeL7j2VRcTgDXEYe76vYceS5", + block_height: 117644234, + block_timestamp: 1714110441791297500, + }, + receipt_outcome: { + gas_burnt: 2861698066507.0, + tokens_burnt: 2.8616980665069997e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EA6NXfWUsxiQ8zpvftmKsWRjxb53ij7DdFpkS9KvkdvD", + included_in_block_hash: "GCXUENAQRbRDxqkHAZfYW58KSnQ1x8vuS9b7gZ3vdSFw", + block_timestamp: "1714110440636413112", + block: { block_height: 117644233 }, + receipt_conversion_tokens_burnt: "30815564516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "bounty_claim", + deposit: 1e23, + fee: 2.8616980665069997e20, + args: '{"id": 0, "deadline": "360000000"}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.169853711669e20 }, + }, + { + id: "4198651914", + receipt_id: "9NUEA2h72Jx7pP6r9Kh6X2smG1jwTgLJJDJazaU1fzGo", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Hu31cB1BvPqayTS2HZupPjJNBiCWoqRU44YrY34UmuDe", + block_height: 117656968, + block_timestamp: 1714125679952601600, + }, + receipt_outcome: { + gas_burnt: 2719887561592.0, + tokens_burnt: 2.719887561592e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BPjcTLuDR4Sra8Yb4arLGRpDCR5GkRX4UAkCoNgwgiqR", + included_in_block_hash: "9BLTSRwkx24v9RNjyi3dL1EmYK49a8Keu2AQq3tdFJaS", + block_timestamp: "1714125678123639663", + block: { block_height: 117656967 }, + receipt_conversion_tokens_burnt: "30856482108400000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.719887561592e20, + args: '{"proposal": {"kind": {"AddBounty": {"bounty": {"times": 6, "token": "", "amount": "10000000000000000000000", "description": "Testing bounty", "max_deadline": "630000000"}}}, "description": "New Bounty proposed by megha19.near"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.028452382676e20 }, + }, + { + id: "4694514154", + receipt_id: "4EsXJuz3eMZq27q2qjZqvHxU9VKs7y5FNjLThNspsQwz", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FirYDaH36SCDLUo9BbMYMH42aaWgKcD8gXrF9Z5Bru3g", + block_height: 118922374, + block_timestamp: 1715718000552336000, + }, + receipt_outcome: { + gas_burnt: 2059788827722.0, + tokens_burnt: 2.059788827722e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "EhHrzsH9osRforci8FuWrUdspQV7yV1JrChZswDj52mT", + included_in_block_hash: "8nJ9CURiRjj5FVKPJTWcX6fcbNi8FaoipT9BgeEA9iYU", + block_timestamp: "1715717999318415517", + block: { block_height: 118922373 }, + receipt_conversion_tokens_burnt: "30820259977600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.059788827722e20, + args: '{"proposal": {"kind": "Vote", "description": "testing"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.3679914274979997e20 }, + }, + { + id: "4694600971", + receipt_id: "3p1nGzgogNP9g5LxJpAoPWEmV7YC6zpZnGnKBTkEcGND", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9SVequ3qi5qFcUmzJ9dKxBwcMWonuvx3cgvHr36WNdgs", + block_height: 118922594, + block_timestamp: 1715718263002633000, + }, + receipt_outcome: { + gas_burnt: 2059788827722.0, + tokens_burnt: 2.059788827722e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "2c261BiKp5SdBFSrXCQ1DN89jV9N6Y1rKEEq8cwoGGgP", + included_in_block_hash: "68MtHf1Lojkn6mnc3u5Jfs9Utns4dWdNuJbefLW9xS9H", + block_timestamp: "1715718261653513799", + block: { block_height: 118922593 }, + receipt_conversion_tokens_burnt: "30820259977600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.059788827722e20, + args: '{"proposal": {"kind": "Vote", "description": "testing"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.3679914274979997e20 }, + }, + { + id: "4694604849", + receipt_id: "GHDvcRGnrMcoKDxdLwi7dHAQ7qRU6H1orRMn1coxfdHo", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "U2j9XSQb31xtNpXPfpegM5cZDojTEjEh8T6f8BtCQG6", + block_height: 118922608, + block_timestamp: 1715718278450168600, + }, + receipt_outcome: { + gas_burnt: 2059788827722.0, + tokens_burnt: 2.059788827722e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "Fs9XDzhr4dqLgHsjKPk1kjRZ7obmPQMLjbVZXQbWeZtN", + included_in_block_hash: "2Cui9AGxnqo93jAyaPBeMHgVGkd2uyHB3E1jFHkWGziu", + block_timestamp: "1715718277617535998", + block: { block_height: 118922607 }, + receipt_conversion_tokens_burnt: "30820259977600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.059788827722e20, + args: '{"proposal": {"kind": "Vote", "description": "testing"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.3679914274979997e20 }, + }, + { + id: "4694669949", + receipt_id: "8DBQhf5QL25Qehtf1spzy1XJ6mRoGiAg5qgBZGvSCt8X", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2CeABjpzHcLr82GG87WJTWdMY2M1pznG7S2CmnCrCQEM", + block_height: 118922746, + block_timestamp: 1715718443667870000, + }, + receipt_outcome: { + gas_burnt: 2059788827722.0, + tokens_burnt: 2.059788827722e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "GKAi8wHtqc6HV8YTGSiMyRZdCAcMowD8hnv1fxCVzwRq", + included_in_block_hash: "Cqj9X3kfPdUnCTU7PHVvPHKy4sw7WiCwrooMxBRQHDJd", + block_timestamp: "1715718442762983996", + block: { block_height: 118922745 }, + receipt_conversion_tokens_burnt: "30820259977600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.059788827722e20, + args: '{"proposal": {"kind": "Vote", "description": "testing"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.3679914274979997e20 }, + }, + { + id: "4705222444", + receipt_id: "DwuPkg9M3i7zwqgLQDwox4MgsxevZkWaEkY5TzE44RFp", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "A4UVAkyMRTeFZdpYsTY1xUR6HkSNnhs6WLSzFyREEQcS", + block_height: 118953236, + block_timestamp: 1715754341852504800, + }, + receipt_outcome: { + gas_burnt: 2059788827722.0, + tokens_burnt: 2.059788827722e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "FhN1cdHCreaDfB4D5mzVgT7GMH5rZxdkanT6goSrRjwx", + included_in_block_hash: "5weNQgBiaDa3YABLtnQxFQBridfNzGwmPnY5PVMrvfXv", + block_timestamp: "1715754340515628909", + block: { block_height: 118953235 }, + receipt_conversion_tokens_burnt: "30820259977600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.059788827722e20, + args: '{"proposal": {"kind": "Vote", "description": "Testing"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.3679914274979997e20 }, + }, + { + id: "4706872718", + receipt_id: "DttVePqc1ZHJrMW6mTHXCKonSKNscitW2gzyguys4sZR", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4FzSm2WmhmZD96Fe1xGLoDYQJMdxEiFLKnLPbu9b21xT", + block_height: 118957817, + block_timestamp: 1715759773159697400, + }, + receipt_outcome: { + gas_burnt: 3780570792748.0, + tokens_burnt: 3.780570792748e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Buc8Cz9dcU3jucGe7iqP1Eu75Ps45MtnznxCzQZfZjJG", + included_in_block_hash: "GJdDvG4cFemSLZ26XGBFC2uFxkwrohjgRt15JuUnVw7Z", + block_timestamp: "1715759772146035278", + block: { block_height: 118957816 }, + receipt_conversion_tokens_burnt: "31440060882400000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 3.780570792748e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["megha19.near"]}, "name": "council", "permissions": ["add_member_to_role:AddProposal", "bounty_done:VoteApprove", "add_bounty:VoteReject", "add_bounty:AddProposal", "config:VoteReject", "add_bounty:VoteApprove", "remove_member_from_role:VoteReject", "policy:VoteRemove", "transfer:VoteRemove", "vote:VoteApprove", "upgrade_self:VoteApprove", "call:VoteRemove", "upgrade_self:AddProposal", "upgrade_remote:AddProposal", "upgrade_remote:VoteReject", "upgrade_remote:VoteApprove", "vote:AddProposal", "add_member_to_role:VoteReject", "bounty_done:VoteReject", "call:AddProposal", "upgrade_self:VoteRemove", "add_bounty:VoteRemove", "remove_member_from_role:VoteRemove", "config:VoteRemove", "call:VoteApprove", "add_member_to_role:VoteRemove", "policy:AddProposal", "add_member_to_role:VoteApprove", "policy:VoteApprove", "transfer:VoteApprove", "config:AddProposal", "*:Finalize", "remove_member_from_role:VoteApprove", "set_vote_token:VoteReject", "bounty_done:AddProposal", "set_vote_token:AddProposal", "policy:VoteReject", "set_vote_token:VoteRemove", "remove_member_from_role:AddProposal", "transfer:VoteReject", "transfer:AddProposal", "call:VoteReject", "upgrade_remote:VoteRemove", "upgrade_self:VoteReject", "vote:VoteReject", "bounty_done:VoteRemove", "vote:VoteRemove", "set_vote_token:VoteApprove", "config:VoteApprove"], "vote_policy": {"call": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [68, 100], "weight_kind": "RoleWeight"}}}, {"kind": "Everyone", "name": "all", "permissions": ["add_bounty:AddProposal", "bounty_done:AddProposal", "transfer:AddProposal", "vote:AddProposal", "remove_member_from_role:AddProposal", "add_member_to_role:AddProposal", "call:AddProposal"], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.0949714015719994e20 }, + }, + { + id: "4706876991", + receipt_id: "L8Vjchrjd3WHzTck29QAaCuMi5ah8nwQFxA91sXN3vZ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3D16sU82Dxk6xjPDrP16SfkP52cQFBHVRaGyL8ehDSiZ", + block_height: 118957838, + block_timestamp: 1715759795190568200, + }, + receipt_outcome: { + gas_burnt: 4490900786461.0, + tokens_burnt: 4.4909007864610003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "63x328n79ApusNtBfjegAUDUqfQEyNttCpB361eUdi2h", + included_in_block_hash: "Fh57Q6T2ZM2rCnnUTh4m42rvU9kw2WM4i9MEYVghxz8n", + block_timestamp: "1715759794078298091", + block: { block_height: 118957837 }, + receipt_conversion_tokens_burnt: "30815564516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.4909007864610003e20, + args: '{"id": 9, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.022238994123e20 }, + }, + { + id: "4706877299", + receipt_id: "8t7ZfLsTcJPv9kHiKrFsLuMUScLN2oWvpUcT5ygfJSVF", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3SVKrVNhsvofSP1Xhmd9qTPr8wgiQTgj7EVLLMaTfopR", + block_height: 118957839, + block_timestamp: 1715759796409366300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "63x328n79ApusNtBfjegAUDUqfQEyNttCpB361eUdi2h", + included_in_block_hash: "Fh57Q6T2ZM2rCnnUTh4m42rvU9kw2WM4i9MEYVghxz8n", + block_timestamp: "1715759794078298091", + block: { block_height: 118957837 }, + receipt_conversion_tokens_burnt: "30815564516200000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.022238994123e20 }, + }, + { + id: "4707143449", + receipt_id: "2FxQGM8UToBLBK3Jt9qX17Y58EaHob4Jr9LEohw7yHvS", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5cV7GY2zPRNYUnaZZWPrYUqYjvYVzVM2bn1BMMMC6gj2", + block_height: 118958431, + block_timestamp: 1715760542390556400, + }, + receipt_outcome: { + gas_burnt: 2692904596393.0, + tokens_burnt: 2.692904596393e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7hNUSweczZKzpydmdyUkth9CoJMippWQZRSQ87dxVPK4", + included_in_block_hash: "CXUJrPa2Q81xRwN3Fsth7NW62ie7SM4rnZc8tZdK37QR", + block_timestamp: "1715760541538261233", + block: { block_height: 118958430 }, + receipt_conversion_tokens_burnt: "30820259977600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.692904596393e20, + args: '{"proposal": {"kind": "Vote", "description": "testing"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.001107196169e20 }, + }, + { + id: "4707257430", + receipt_id: "AMw9EYecyhUDmdShSDnWwYDDtr7siGo87jauZVZNjYzY", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GU4BfqUnnpLuPNWMGBigcaEXUi7RrFjy2R6EN5WbWR4P", + block_height: 118958730, + block_timestamp: 1715760924622939400, + }, + receipt_outcome: { + gas_burnt: 2706726552319.0, + tokens_burnt: 2.706726552319e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2PXiefStxP73DoEYxnZ7GVhhmJcrHTLfpQosHAyRqWfg", + included_in_block_hash: "43fbnTjh7GvyEAgqNK7sTCdwiaRk2HxjotsW4eSZCuMJ", + block_timestamp: "1715760923340292683", + block: { block_height: 118958729 }, + receipt_conversion_tokens_burnt: "30820259977600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.706726552319e20, + args: '{"proposal": {"kind": "Vote", "description": "testing"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.0149291520950003e20 }, + }, + { + id: "4707375635", + receipt_id: "GRECZHj8aziBSRW6sAuoXFMDxYzEgaQKktnUFdByUmf9", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6DEuLBJWSFAdPJXoayg3bAW2sk1pCbDxxTXcsaFwRpuo", + block_height: 118959081, + block_timestamp: 1715761329133693200, + }, + receipt_outcome: { + gas_burnt: 2748192420097.0, + tokens_burnt: 2.748192420097e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HTvNZjN3jy8Cksof4kjpYdfPCGCJzQeH5AVQVbEqMCWJ", + included_in_block_hash: "DejZaJGTdT1efPoScW1uyKjbqaJt5pXiVixg4xwVAcv9", + block_timestamp: "1715761327976136593", + block: { block_height: 118959080 }, + receipt_conversion_tokens_burnt: "30820259977600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.748192420097e20, + args: '{"proposal": {"kind": "Vote", "description": "testing"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.056395019873e20 }, + }, + { + id: "4707638587", + receipt_id: "7jaVWmnYMfogHDikmB2uELE3qLEqmgHnTa8LTEE94x4f", + predecessor_account_id: "saswat_m.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3oYfHvZ3EL2gja1xLnGTqo3RGJaABZo32MJdp2UVs7xC", + block_height: 118959698, + block_timestamp: 1715762069028689400, + }, + receipt_outcome: { + gas_burnt: 2668176640797.0, + tokens_burnt: 2.6681766407970003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "8DRCUVdukVGfooqrcjhq7racC1ydifWM4jpoe6khH2y2", + included_in_block_hash: "Gsud6zmq242dvn6ujJ2qgGx3QcTCsC3rswaPTtUL43cu", + block_timestamp: "1715762067665847572", + block: { block_height: 118959697 }, + receipt_conversion_tokens_burnt: "30828085746600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.6681766407970003e20, + args: '{"proposal": {"kind": "Vote", "description": "[EMBED](saswat_m.near/post/main@118959640)"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.976457498263e20 }, + }, + { + id: "7220915341", + receipt_id: "Bp6euWAR3H2rzRovXA2Qp6E7MS8dfCoTNhifPQSkUEPE", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3dEBnxt8gq1wrmZpWn5WZGY3oHUTJ6yQ7E68BogHb4Pr", + block_height: 125166484, + block_timestamp: 1722966972541009400, + }, + receipt_outcome: { + gas_burnt: 3790172376781.0, + tokens_burnt: 3.790172376781e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "B2yCMWxkPhdB8vQKpXp9jqLbEr9sBzDu1c6j8zXZJ1Qp", + included_in_block_hash: "8dEHLvjCfWWJGEzUDkKGtUhjpF9EHa9dMfp7TExKpK2a", + block_timestamp: "1722966971588473590", + block: { block_height: 125166483 }, + receipt_conversion_tokens_burnt: "31456159607200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 3.790172376781e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["megha19.near", "theori.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "council", "permissions": ["add_member_to_role:AddProposal", "bounty_done:VoteApprove", "add_bounty:VoteReject", "add_bounty:AddProposal", "config:VoteReject", "add_bounty:VoteApprove", "remove_member_from_role:VoteReject", "policy:VoteRemove", "transfer:VoteRemove", "vote:VoteApprove", "upgrade_self:VoteApprove", "call:VoteRemove", "upgrade_self:AddProposal", "upgrade_remote:AddProposal", "upgrade_remote:VoteReject", "upgrade_remote:VoteApprove", "vote:AddProposal", "add_member_to_role:VoteReject", "bounty_done:VoteReject", "call:AddProposal", "upgrade_self:VoteRemove", "add_bounty:VoteRemove", "remove_member_from_role:VoteRemove", "config:VoteRemove", "call:VoteApprove", "add_member_to_role:VoteRemove", "policy:AddProposal", "add_member_to_role:VoteApprove", "policy:VoteApprove", "transfer:VoteApprove", "config:AddProposal", "*:Finalize", "remove_member_from_role:VoteApprove", "set_vote_token:VoteReject", "bounty_done:AddProposal", "set_vote_token:AddProposal", "policy:VoteReject", "set_vote_token:VoteRemove", "remove_member_from_role:AddProposal", "transfer:VoteReject", "transfer:AddProposal", "call:VoteReject", "upgrade_remote:VoteRemove", "upgrade_self:VoteReject", "vote:VoteReject", "bounty_done:VoteRemove", "vote:VoteRemove", "set_vote_token:VoteApprove", "config:VoteApprove"], "vote_policy": {"call": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [20, 100], "weight_kind": "RoleWeight"}}}, {"kind": "Everyone", "name": "all", "permissions": ["add_member_to_role:AddProposal", "transfer:AddProposal", "bounty_done:AddProposal", "call:AddProposal", "remove_member_from_role:AddProposal", "vote:AddProposal", "add_bounty:AddProposal"], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.104733972853e20 }, + }, + { + id: "7220922149", + receipt_id: "46ZUeLCypLPW1tU42YRfvNFgEQsRSXXgUa5nU8277mJe", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4Xr9b5kze39E8TUhVJGZqypG4GYxCaDHgCHgiVnVRLh3", + block_height: 125166509, + block_timestamp: 1722967000366741800, + }, + receipt_outcome: { + gas_burnt: 4649852345405.0, + tokens_burnt: 4.6498523454049996e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3vFpfW753ZraVUoednPZZaHBpJ3QTcuX5maoKvM7299L", + included_in_block_hash: "5V2cfnkjqGSktYnPZ4PAkX8BSxUPE2idDeY9bJD8tMan", + block_timestamp: "1722966999410047401", + block: { block_height: 125166508 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.6498523454049996e20, + args: '{"id": 14, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.181192789001e20 }, + }, + { + id: "7220922646", + receipt_id: "BDfeGB1FYRCVgPUZEEHYRG48smCXLRaBCHxmiDSDpQrU", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "623BzkLsgaidiHxiN7jHSwQKWEpYMiB47htpoPRqHSae", + block_height: 125166510, + block_timestamp: 1722967001372694300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "3vFpfW753ZraVUoednPZZaHBpJ3QTcuX5maoKvM7299L", + included_in_block_hash: "5V2cfnkjqGSktYnPZ4PAkX8BSxUPE2idDeY9bJD8tMan", + block_timestamp: "1722966999410047401", + block: { block_height: 125166508 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.181192789001e20 }, + }, + { + id: "7222721641", + receipt_id: "AQpzCgmg8U1zNKtvtaBA5hRoQHsgY5pRjXFYrw4sD65W", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EKnaLetYejnhgoiG4nCaHJFtcqKXpk8pcUFcQ6aF6nrw", + block_height: 125171732, + block_timestamp: 1722972858013381400, + }, + receipt_outcome: { + gas_burnt: 2821031989915.0, + tokens_burnt: 2.821031989915e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5YFa5ejBFtnUUS8J9Fp7bAsdt9sajVp8thX8pATH9kLe", + included_in_block_hash: "4q9keDhBXnVWBLA3s4d3gDcCnLv4gcYXonLXd6riSa3e", + block_timestamp: "1722972856742146444", + block: { block_height: 125171731 }, + receipt_conversion_tokens_burnt: "30884654876800000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.821031989915e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "joespano.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Activities Report 7/22-8/4\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Moderator Contributions Bi-Weekly Report\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"this is notes\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":172}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.129878538683e20 }, + }, + { + id: "7222853919", + receipt_id: "ECCmLcP8V2zi6usbXe8HVaMQfwQKNYjNFHB3XL1TQThc", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "242eZXhXfQH1oNz9scKzucZpqDBmYkZ1pUiALXnyQLFo", + block_height: 125172074, + block_timestamp: 1722973242468810200, + }, + receipt_outcome: { + gas_burnt: 2808015712887.0, + tokens_burnt: 2.808015712887e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HbLgJaMxPmKrMtam7RHJp47ua7LBRa4UKUJitEGUtHZy", + included_in_block_hash: "2DSq9qw3BTnWgJgfX8eZrHCY6M8hZ2fDFKk8MzzPcLqj", + block_timestamp: "1722973241472873356", + block: { block_height: 125172073 }, + receipt_conversion_tokens_burnt: "30971632709400000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.808015712887e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "5625000000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "petersalomonsen.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Developer Contributor report by Peter for 2024-05-21 - 2024-06-20\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Requesting funding for my DevHub contributions in the period 21th of May to 20th of June 2024. 37.5 hours in total. There have been various topics such as tests for the Infrastructure committee instance, creating the structure for maintaining multiple instances in the main devhub repository, support for multiple instances in the web4 social media landing pages and assistance in other tasks.\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":127}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.117732039981e20 }, + }, + { + id: "7222862370", + receipt_id: "CPpLek857c4kAE56JcpEKMcScfrcFG8NFbEG1TAgrUuB", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HjeHJLSUHcNnZArdbfaknRSDMSTWynfEq1inBBRnLcuU", + block_height: 125172109, + block_timestamp: 1722973279685207300, + }, + receipt_outcome: { + gas_burnt: 3041488487798.0, + tokens_burnt: 3.041488487798e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3S2ahzerJFm5MyvqRFNJs3VVWSwgQ3Nw8ekGRJEa5DAS", + included_in_block_hash: "7TLKASYprYERNTTY7LeCkTx3b73oviBxpGx3JcqjW7c1", + block_timestamp: "1722973278544963388", + block: { block_height: 125172108 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.041488487798e20, + args: '{"id": 16, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.349646368894e20 }, + }, + { + id: "7250977318", + receipt_id: "2eaAx77DpWB6sx8wEDaVz1caFhrRSnQcm7U3GBYjC2Cb", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "B3naVRb9ni9WSFE3FZafPhsnKTS1UusUAs7WobBQ2Xb", + block_height: 125260386, + block_timestamp: 1723071238094865700, + }, + receipt_outcome: { + gas_burnt: 2949449810332.0, + tokens_burnt: 2.9494498103320003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "G6tqoiVs4RRfpwaMZQKgKYy6eJfgoYKhh33yfTs88Szw", + included_in_block_hash: "BjbEbtGiDVfu9mr5ojH2SfAjA9QJPuxEBueEwhkoCKwe", + block_timestamp: "1723071237174247977", + block: { block_height: 125260385 }, + receipt_conversion_tokens_burnt: "30815564516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.9494498103320003e20, + args: '{"id": 15, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.257605455494e20 }, + }, + { + id: "7268802310", + receipt_id: "FX5i9JYJrtbQ75qUwPTTvdpfsvB7U5fgm4MN3uSjuiJC", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DCwoBc4EQG8yvGaV2B9EWPh2eQH2bFm3GQChBku1C7nP", + block_height: 125319244, + block_timestamp: 1723136262822857500, + }, + receipt_outcome: { + gas_burnt: 3832019446830.0, + tokens_burnt: 3.8320194468300004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EAkLGwHpqdJv4CToYw1rG9kmXTBQu3vmnAU7nRc6n8Pd", + included_in_block_hash: "5rH5EQ3VQ4ERy81YWWPFZLatquuE37a7XsrVGRizHNy7", + block_timestamp: "1723136261730036825", + block: { block_height: 125319243 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.8320194468300004e20, + args: '{"id": 16, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.453006715933e20 }, + }, + { + id: "7268802634", + receipt_id: "9psyZmMJ71ks2oQjM6dYgk2k9onyH7Re1VUEndmeVTnN", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "C9PyFQvfCJxsNWznsjW28AA5Ts6DfXDwj5UcfLzWENaG", + block_height: 125319245, + block_timestamp: 1723136263874564900, + }, + receipt_outcome: { + gas_burnt: 1799186716586.0, + tokens_burnt: 1.799186716586e20, + executor_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + status: false, + }, + transaction_hash: "EAkLGwHpqdJv4CToYw1rG9kmXTBQu3vmnAU7nRc6n8Pd", + included_in_block_hash: "5rH5EQ3VQ4ERy81YWWPFZLatquuE37a7XsrVGRizHNy7", + block_timestamp: "1723136261730036825", + block: { block_height: 125319243 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer", + deposit: 1.0, + fee: 1.799186716586e20, + args: '{"memo": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Developer Contributor report by Peter for 2024-05-21 - 2024-06-20\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Requesting funding for my DevHub contributions in the period 21th of May to 20th of June 2024. 37.5 hours in total. There have been various topics such as tests for the Infrastructure committee instance, creating the structure for maintaining multiple instances in the main devhub repository, support for multiple instances in the web4 social media landing pages and assistance in other tasks.\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":127}", "amount": "5625000000", "receiver_id": "petersalomonsen.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.453006715933e20 }, + }, + { + id: "7268802638", + receipt_id: "9n1CpR4wzjNNmf81ha2G8DaT6gUqbuMjBrqgy2xJ6zcN", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "C9PyFQvfCJxsNWznsjW28AA5Ts6DfXDwj5UcfLzWENaG", + block_height: 125319245, + block_timestamp: 1723136263874564900, + }, + receipt_outcome: { + gas_burnt: 2513642671421.0, + tokens_burnt: 2.5136426714210003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EAkLGwHpqdJv4CToYw1rG9kmXTBQu3vmnAU7nRc6n8Pd", + included_in_block_hash: "5rH5EQ3VQ4ERy81YWWPFZLatquuE37a7XsrVGRizHNy7", + block_timestamp: "1723136261730036825", + block: { block_height: 125319243 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 2.5136426714210003e20, + args: '{"proposal_id": 16}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.453006715933e20 }, + }, + { + id: "7268802745", + receipt_id: "EM5kah5n66Ybxx9B3qsftYr2E5G854NWDATQjFVDyzZF", + predecessor_account_id: "system", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FNUFK6hcHr58ZCLfP9k6xaGevMyvxKoGtUcXLRjqZ5MZ", + block_height: 125319246, + block_timestamp: 1723136264769391900, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 0.0, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EAkLGwHpqdJv4CToYw1rG9kmXTBQu3vmnAU7nRc6n8Pd", + included_in_block_hash: "5rH5EQ3VQ4ERy81YWWPFZLatquuE37a7XsrVGRizHNy7", + block_timestamp: "1723136261730036825", + block: { block_height: 125319243 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { action: "TRANSFER", method: null, deposit: 1.0, fee: 0.0, args: null }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.453006715933e20 }, + }, + { + id: "7269306276", + receipt_id: "39asTAgKK7oqns11WLxRWhZ1SFjj9JacoRAt3SeEPB5m", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "z94PEYfCi2fNEVhRXr9WzGJCMNroFdXm1bShA5DWXnk", + block_height: 125320582, + block_timestamp: 1723137768987933000, + }, + receipt_outcome: { + gas_burnt: 2810226451349.0, + tokens_burnt: 2.810226451349e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FU6yAQsJ5dsepmRdipWPSmibqUL5kJNmkKR5wWfB1BoQ", + included_in_block_hash: "5qkaGLrQwW8KboXUo7o8VRE6X8prwJ9oTYnNR3ge6S9N", + block_timestamp: "1723137767962103704", + block: { block_height: 125320581 }, + receipt_conversion_tokens_burnt: "30856705701800000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.810226451349e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "20241022000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing with Megha\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"We are awesome\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Magic\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.118793508367e20 }, + }, + { + id: "7269382791", + receipt_id: "3rzNrahP9R5NQPZd9t8JVynyKGmBBhWZ5GuiTukcW3z5", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ANhPcr4t1VK4SfVhk9ceUrTUA9pt2cphtaWvHxB3TTSV", + block_height: 125320775, + block_timestamp: 1723137979679948300, + }, + receipt_outcome: { + gas_burnt: 2985286646600.0, + tokens_burnt: 2.9852866466e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5oyv1aLCYZB2t7EBKDM9gHLjgYwaX7CmbQL92QjXZNpU", + included_in_block_hash: "4YrRX9gJ77xwjVyzPgk7CDdLTcNgG6H9L2Fb1TcXxxtR", + block_timestamp: "1723137978583603209", + block: { block_height: 125320774 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.9852866466e20, + args: '{"id": 17, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.293444527696e20 }, + }, + { + id: "7269393659", + receipt_id: "A2RDxF9oUMvdtgmrSryBcUA25BXod6xKBf3KeETBfiwW", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9V5X2Mokt4Zbqexv9oLGx2XihEWw8EqAjFRF74qbbpja", + block_height: 125320796, + block_timestamp: 1723138002958550300, + }, + receipt_outcome: { + gas_burnt: 3673883610796.0, + tokens_burnt: 3.6738836107960005e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "92MmhsSZHzbB1A9wGyz8yQUSfGTK7QZTpW47BwRxFFX6", + included_in_block_hash: "2NScwDa9HAkSRHHtMdF5VgHKDpowvt9Lc4tYoA8n1k2q", + block_timestamp: "1723138001918189795", + block: { block_height: 125320795 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.6738836107960005e20, + args: '{"id": 17, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.453577354014999e20 }, + }, + { + id: "7269393982", + receipt_id: "4QHiDgVQwqaeqJT6Wh3ZX9aHZWwRerWfEtLLWNP4MMFH", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AmZtLgnUuhJJbTrWMif7Fvoc4bRuvHG9NcxjXPUwgoMN", + block_height: 125320797, + block_timestamp: 1723138004002312400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "92MmhsSZHzbB1A9wGyz8yQUSfGTK7QZTpW47BwRxFFX6", + included_in_block_hash: "2NScwDa9HAkSRHHtMdF5VgHKDpowvt9Lc4tYoA8n1k2q", + block_timestamp: "1723138001918189795", + block: { block_height: 125320795 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 2.0241022e22, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.453577354014999e20 }, + }, + { + id: "7269393987", + receipt_id: "2sLomM5axQfKFSioXgQFm5fhRp6LUs5f9X1wAhFg4vLA", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AmZtLgnUuhJJbTrWMif7Fvoc4bRuvHG9NcxjXPUwgoMN", + block_height: 125320797, + block_timestamp: 1723138004002312400, + }, + receipt_outcome: { + gas_burnt: 3025170737123.0, + tokens_burnt: 3.0251707371229997e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "92MmhsSZHzbB1A9wGyz8yQUSfGTK7QZTpW47BwRxFFX6", + included_in_block_hash: "2NScwDa9HAkSRHHtMdF5VgHKDpowvt9Lc4tYoA8n1k2q", + block_timestamp: "1723138001918189795", + block: { block_height: 125320795 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.0251707371229997e20, + args: '{"proposal_id": 17}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.453577354014999e20 }, + }, + { + id: "7269394481", + receipt_id: "3hGJPwXGesUH7RxetNoy7ta6tSo2VajPwHHjZXV5zLft", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "28tYvozPJKiGLivyU6KQuCLe7BK7mtRv9aPppZS1ctn3", + block_height: 125320799, + block_timestamp: 1723138006263769900, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "92MmhsSZHzbB1A9wGyz8yQUSfGTK7QZTpW47BwRxFFX6", + included_in_block_hash: "2NScwDa9HAkSRHHtMdF5VgHKDpowvt9Lc4tYoA8n1k2q", + block_timestamp: "1723138001918189795", + block: { block_height: 125320795 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.453577354014999e20 }, + }, + { + id: "7269864066", + receipt_id: "H8de1ieRCRX45SK2hUYWxD5yLJNuerLKwkZ6tapYtPL9", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5wKddnX71Zog4yeHvmGe7Xafiin2deJrfFTq3ckwvRUd", + block_height: 125322273, + block_timestamp: 1723139613177918500, + }, + receipt_outcome: { + gas_burnt: 3762567617683.0, + tokens_burnt: 3.762567617683e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "8TaWcDwZKSRF1Nfm2mt3HHuUYohU9ZkCP3RoxZ3Z6Mto", + included_in_block_hash: "94V3borfE8XizY2v74wqSg67fzh1MEe9XVYGgw5vg52L", + block_timestamp: "1723139612123318792", + block: { block_height: 125322272 }, + receipt_conversion_tokens_burnt: "31456159607200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 3.762567617683e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "council", "permissions": ["add_member_to_role:AddProposal", "bounty_done:VoteApprove", "add_bounty:VoteReject", "add_bounty:AddProposal", "config:VoteReject", "add_bounty:VoteApprove", "remove_member_from_role:VoteReject", "policy:VoteRemove", "transfer:VoteRemove", "vote:VoteApprove", "upgrade_self:VoteApprove", "call:VoteRemove", "upgrade_self:AddProposal", "upgrade_remote:AddProposal", "upgrade_remote:VoteReject", "upgrade_remote:VoteApprove", "vote:AddProposal", "add_member_to_role:VoteReject", "bounty_done:VoteReject", "call:AddProposal", "upgrade_self:VoteRemove", "add_bounty:VoteRemove", "remove_member_from_role:VoteRemove", "config:VoteRemove", "call:VoteApprove", "add_member_to_role:VoteRemove", "policy:AddProposal", "add_member_to_role:VoteApprove", "policy:VoteApprove", "transfer:VoteApprove", "config:AddProposal", "*:Finalize", "remove_member_from_role:VoteApprove", "set_vote_token:VoteReject", "bounty_done:AddProposal", "set_vote_token:AddProposal", "policy:VoteReject", "set_vote_token:VoteRemove", "remove_member_from_role:AddProposal", "transfer:VoteReject", "transfer:AddProposal", "call:VoteReject", "upgrade_remote:VoteRemove", "upgrade_self:VoteReject", "vote:VoteReject", "bounty_done:VoteRemove", "vote:VoteRemove", "set_vote_token:VoteApprove", "config:VoteApprove"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": "Everyone", "name": "all", "permissions": ["add_member_to_role:AddProposal", "transfer:AddProposal", "bounty_done:AddProposal", "call:AddProposal", "remove_member_from_role:AddProposal", "vote:AddProposal", "add_bounty:AddProposal"], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.077129213755e20 }, + }, + { + id: "7269891390", + receipt_id: "B83QXLdpYCyi61Vt1fLX2pWdeNgNK6FE3pSF5qZLccDR", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8za2cRnE8UsZnsYpbnr5NENKbkeYh21u1pmqaQ27TWnu", + block_height: 125322307, + block_timestamp: 1723139653134414800, + }, + receipt_outcome: { + gas_burnt: 3853239571448.0, + tokens_burnt: 3.853239571448e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7ZzikrZFj5zCt92C5D5vK1wnRnSw7aduut5YcCABtyp9", + included_in_block_hash: "GpYTfoBgaK86cZW6KjNDW4x87WPwrrj5ZtkEESRdZoV8", + block_timestamp: "1723139651902513518", + block: { block_height: 125322306 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.853239571448e20, + args: '{"id": 18, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.161397452544e20 }, + }, + { + id: "7269996133", + receipt_id: "DENyA6QgeNHcBhngTDqypE92iMYyY9pvQp6w9PWBSM83", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2XmK5dETjfUXhgjdNXV6QsPkcqQQodaWWsK7VfmAsaFS", + block_height: 125322583, + block_timestamp: 1723139955047251500, + }, + receipt_outcome: { + gas_burnt: 4610180761265.0, + tokens_burnt: 4.6101807612649996e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "F9Hzi5fYcnTdSgftRRbA1TDL1BDaKcUCaSjgy4G9aNQG", + included_in_block_hash: "4Ck1ii1t4i6JFe7KWJKZm7Yg5yxHaa37VSdc5ADKzEkr", + block_timestamp: "1723139953950753874", + block: { block_height: 125322582 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.6101807612649996e20, + args: '{"id": 18, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.1415212048609994e20 }, + }, + { + id: "7269996472", + receipt_id: "6vq5pZvTUAhUR1De795KQMLoPnJswdE9gEMjfuihdCey", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GJJRASiUgkz61fQgUg3u5UfJ7fyhhEvYANHCvMJtnYsV", + block_height: 125322584, + block_timestamp: 1723139955956797400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "F9Hzi5fYcnTdSgftRRbA1TDL1BDaKcUCaSjgy4G9aNQG", + included_in_block_hash: "4Ck1ii1t4i6JFe7KWJKZm7Yg5yxHaa37VSdc5ADKzEkr", + block_timestamp: "1723139953950753874", + block: { block_height: 125322582 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.1415212048609994e20 }, + }, + { + id: "7270472053", + receipt_id: "A2y3ATDYHv79BANVSewp1X7GiW3NYD3sDqz9FDJjdYe9", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HQ3e1P4gcFoK32q2JvTaJoNEmyBjdd8jsUGw1orMYQfX", + block_height: 125323908, + block_timestamp: 1723141441186589700, + }, + receipt_outcome: { + gas_burnt: 2733930356857.0, + tokens_burnt: 2.7339303568569998e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7YcHjTQpmCn6XKX9kVm3hRgpySCvJk5Qzm5RghJsfggp", + included_in_block_hash: "DzX3CRwMx3BXtvLLjnKhtETapxsTjzJQ1gKMH5zmddYJ", + block_timestamp: "1723141440240865139", + block: { block_height: 125323907 }, + receipt_conversion_tokens_burnt: "30871239272800000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.7339303568569998e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000000000000000000", "token_id": "", "receiver_id": "joespano.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Activities Report 7/22-8/4\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Moderator Contributions Bi-Weekly Report\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":172}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.042642749585e20 }, + }, + { + id: "7270507695", + receipt_id: "FsKZwCyCKc645Mn7PuJRAq2nBRJEE9dJKUQPRKAePKN4", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "CHhdLHbp7ZBzXBshY2jpByhuwSJhN3RTiDhcYTWTPSBw", + block_height: 125323961, + block_timestamp: 1723141500770890500, + }, + receipt_outcome: { + gas_burnt: 3576713718208.0, + tokens_burnt: 3.576713718208e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "31VHsngGQcYgcETi5pb3DysZqHmss74EXYCENL3VQvdP", + included_in_block_hash: "8weXchJoNs3Sk7QJf9tNB6GUMbk8wmLgEnA9Z5dChYHz", + block_timestamp: "1723141499672918442", + block: { block_height: 125323960 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.576713718208e20, + args: '{"id": 19, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.438725963623e20 }, + }, + { + id: "7270508763", + receipt_id: "4URAVwjKg8mRJksQ6PNRx6JQcD4Axvv58HmqKbupGTdx", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "joespano.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DAC9eNakfoJZ5z6s5yEJFtegQnd4Q2wHfaXe6Ube7xTD", + block_height: 125323962, + block_timestamp: 1723141501888536300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "joespano.near", + status: true, + }, + transaction_hash: "31VHsngGQcYgcETi5pb3DysZqHmss74EXYCENL3VQvdP", + included_in_block_hash: "8weXchJoNs3Sk7QJf9tNB6GUMbk8wmLgEnA9Z5dChYHz", + block_timestamp: "1723141499672918442", + block: { block_height: 125323960 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e19, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.438725963623e20 }, + }, + { + id: "7270508769", + receipt_id: "xQo5aDiatuKe9BJ5jFxf8BFcTM7mdWRpjTTdFU17cny", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DAC9eNakfoJZ5z6s5yEJFtegQnd4Q2wHfaXe6Ube7xTD", + block_height: 125323962, + block_timestamp: 1723141501888536300, + }, + receipt_outcome: { + gas_burnt: 3107489239319.0, + tokens_burnt: 3.107489239319e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "31VHsngGQcYgcETi5pb3DysZqHmss74EXYCENL3VQvdP", + included_in_block_hash: "8weXchJoNs3Sk7QJf9tNB6GUMbk8wmLgEnA9Z5dChYHz", + block_timestamp: "1723141499672918442", + block: { block_height: 125323960 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.107489239319e20, + args: '{"proposal_id": 19}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.438725963623e20 }, + }, + { + id: "7270510534", + receipt_id: "7jqRq6iEeB2tDi7o61L7Dmf8pGYPDXAPz8Em477aicJH", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FPparX6LhwTHP78g265VsJdm7fTikM5pdU8txSLcvtmA", + block_height: 125323964, + block_timestamp: 1723141504093642200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "31VHsngGQcYgcETi5pb3DysZqHmss74EXYCENL3VQvdP", + included_in_block_hash: "8weXchJoNs3Sk7QJf9tNB6GUMbk8wmLgEnA9Z5dChYHz", + block_timestamp: "1723141499672918442", + block: { block_height: 125323960 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.438725963623e20 }, + }, + { + id: "7354292532", + receipt_id: "Gwumo9sjcPxSKaGSKp6RzPDMPbHczzTJ2Uwb6S9NCnw7", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "F2ahbiKPQSozYi3zo31soJomaGxoHNmZKKDnFuRVCahp", + block_height: 125603434, + block_timestamp: 1723453693606572300, + }, + receipt_outcome: { + gas_burnt: 4365651545631.0, + tokens_burnt: 4.365651545631e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3KKVsPYsXrpVASwXgiuVqm9dK32WycH3njr11niACmpZ", + included_in_block_hash: "7uEhjVaTLJefCkgkj6RLfENV5FTDDBu3o1Sh5SJpPV7N", + block_timestamp: "1723453692495923787", + block: { block_height: 125603433 }, + receipt_conversion_tokens_burnt: "31641742129200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.365651545631e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["megha19.near"]}, "name": "Create Requests", "permissions": ["config:Finalize", "config:AddProposal", "policy:AddProposal", "add_bounty:AddProposal", "bounty_done:AddProposal", "transfer:AddProposal", "vote:AddProposal", "call:AddProposal", "upgrade_self:AddProposal", "upgrade_remote:AddProposal", "set_vote_token:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near"]}, "name": "Manage Members", "permissions": ["remove_member_from_role:*", "add_member_to_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near"]}, "name": "Vote", "permissions": ["*:VoteApprove", "*:VoteReject", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.6820689669229996e20 }, + }, + { + id: "7354301144", + receipt_id: "5biMCnQWmbQ2xwSX7fzZqcSoQTHqSeU9LBE94NcHTDTe", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4RZpXw1NsX8MazaH38oZ65hwGZXdGJiZqKZsvSSKRrue", + block_height: 125603466, + block_timestamp: 1723453730427688400, + }, + receipt_outcome: { + gas_burnt: 4640993716625.0, + tokens_burnt: 4.6409937166250004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FqExBUGLLUH6zovdahgtgvawF8wsATFSgsegAhkM98ic", + included_in_block_hash: "8H3Ak1fodqcpW7V9VFyhnSxiQzgAxC18cAwE2toWvJpw", + block_timestamp: "1723453729190752777", + block: { block_height: 125603465 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.6409937166250004e20, + args: '{"id": 20, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.1723341602209995e20 }, + }, + { + id: "7354301496", + receipt_id: "G4U3vtzWp76XTs9wx9oFHAtv5U5H7pzCTb1ujeW9G7P3", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HK3thT6BXknyQ1Kd4wKQYDRSFcwEQ1sqXJZQABNMxdJ9", + block_height: 125603467, + block_timestamp: 1723453731629300000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "FqExBUGLLUH6zovdahgtgvawF8wsATFSgsegAhkM98ic", + included_in_block_hash: "8H3Ak1fodqcpW7V9VFyhnSxiQzgAxC18cAwE2toWvJpw", + block_timestamp: "1723453729190752777", + block: { block_height: 125603465 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.1723341602209995e20 }, + }, + { + id: "7357251450", + receipt_id: "5mriUUv2gvCh6eE61cdErAGhR38n22VZKReTSYq8Zx3y", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EARXXkV7YLk4NdW8sJN4CUVRCWhUggATFvTqVwaA7JkM", + block_height: 125610187, + block_timestamp: 1723461430045044000, + }, + receipt_outcome: { + gas_burnt: 4451236301449.0, + tokens_burnt: 4.451236301449e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HdUShCWCdjtsq5aE54ZR8KJHgH471aZJs4aZoPSXMk2h", + included_in_block_hash: "GvJ2r7NpruxwySZmjmKKYzAeYZF9vHsjYj6yG5wqufoS", + block_timestamp: "1723461428792593555", + block: { block_height: 125610186 }, + receipt_conversion_tokens_burnt: "31646661184000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.451236301449e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["megha19.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near"]}, "name": "Manage Members", "permissions": ["remove_member_from_role:*", "add_member_to_role:*", "config:*", "policy:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.767702913289e20 }, + }, + { + id: "7357629128", + receipt_id: "ERoxzgMV3TzuzwSjrAcf6tf9Hsgd3WjvwrcXvVmd6BpF", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FFTYQHW9W2fSYcym69do186LqFL9kbGGKebP7rfLU2KM", + block_height: 125610937, + block_timestamp: 1723462273414552600, + }, + receipt_outcome: { + gas_burnt: 4830387165833.0, + tokens_burnt: 4.830387165833e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CJzaDbSHJXJdiV3Ww2axF4FPNexqtaG6CAuYQ3w3xNs2", + included_in_block_hash: "HgpMCZVjBhmhsJ6AqVPY5H8BkX9xghbnkXwnhSgVAuGR", + block_timestamp: "1723462272652972656", + block: { block_height: 125610936 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.830387165833e20, + args: '{"id": 21, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.361727609429e20 }, + }, + { + id: "7357630306", + receipt_id: "2gBDMU9QTcrFNaJv2tdYkpo4GTeSLiBrnBUav2dLkgZ8", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8p9sGqCdjMyXuTgEYmhsgHoSwhGjfKcno8Gxr5M5Aoyf", + block_height: 125610938, + block_timestamp: 1723462274694061800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "CJzaDbSHJXJdiV3Ww2axF4FPNexqtaG6CAuYQ3w3xNs2", + included_in_block_hash: "HgpMCZVjBhmhsJ6AqVPY5H8BkX9xghbnkXwnhSgVAuGR", + block_timestamp: "1723462272652972656", + block: { block_height: 125610936 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.361727609429e20 }, + }, + { + id: "7357708722", + receipt_id: "GwQ4AMKNGPVT1GjNhVbqTm7hmq7vUmdPSBjZS4YUkYAW", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8smybnsUNJNyPdrevJoycH3QhF6JbT233smsfbKNJVn5", + block_height: 125611071, + block_timestamp: 1723462427910415400, + }, + receipt_outcome: { + gas_burnt: 4471464265537.0, + tokens_burnt: 4.471464265537e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5rj7Mig9Ve5WfYbXc9vqoJhWQHqGZzhG1sDa8doL4TwD", + included_in_block_hash: "GuiuFbPScxXsX4JqDmjGCQNipv4heeYewKWTmcVqwUgo", + block_timestamp: "1723462426646741133", + block: { block_height: 125611070 }, + receipt_conversion_tokens_burnt: "31656052106800000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.471464265537e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["megha19.near", "theori.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "theori.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.788024786605e20 }, + }, + { + id: "7357710434", + receipt_id: "LYXRfETwR2GEumCpyPck8RWLduxsGDEJvzxshTHVibs", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "523YS4FmARtWAh9FJKf3Uwpcx1KXRAgG19FYcAhY2fJC", + block_height: 125611074, + block_timestamp: 1723462431888068000, + }, + receipt_outcome: { + gas_burnt: 4788059126081.0, + tokens_burnt: 4.7880591260810006e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9iWgnCGZpuMpEkTd3YiN2p1hMMBcJ6RUfgT2Jjz46W1k", + included_in_block_hash: "5N83PsBUQ3SdgcSGQfsSpyQW3BytxCYWfZFWmyxUQJUk", + block_timestamp: "1723462430580040229", + block: { block_height: 125611073 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.7880591260810006e20, + args: '{"id": 22, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.319399569677e20 }, + }, + { + id: "7357711135", + receipt_id: "DBW7nxaeFn5WeHtTZsCPxNP4pYQxASNEGtTauXwzpdG5", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "J7hTR5SxVnSYb42zpf9DEuATR52dCe78Vv7iib2a46uT", + block_height: 125611075, + block_timestamp: 1723462433204932900, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "9iWgnCGZpuMpEkTd3YiN2p1hMMBcJ6RUfgT2Jjz46W1k", + included_in_block_hash: "5N83PsBUQ3SdgcSGQfsSpyQW3BytxCYWfZFWmyxUQJUk", + block_timestamp: "1723462430580040229", + block: { block_height: 125611073 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.319399569677e20 }, + }, + { + id: "7357920950", + receipt_id: "5qCDChNxoF7yHmvXRM7fcSkj8ppM9ahVKCtQJdCcZw3B", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GLZYHQQ4iAn63W6gFh2DZJk6hY7WXNPBCXP3kYSbM2gS", + block_height: 125611503, + block_timestamp: 1723462907068387000, + }, + receipt_outcome: { + gas_burnt: 4529288773804.0, + tokens_burnt: 4.5292887738040005e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4ARZevHD5zKJRgQTD53kioCNj6wKWiu15TAooZ5tm83G", + included_in_block_hash: "Cqt9X6e1sfoZ92QdhCnMufeDnNaEi6jPL7s4iDDHXkgg", + block_timestamp: "1723462905837466163", + block: { block_height: 125611502 }, + receipt_conversion_tokens_burnt: "31671480051400000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.5292887738040005e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "megha19.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["theori.near", "megha19.near", "petersalomonsen.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "theori.near", "petersalomonsen.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.8460035743180004e20 }, + }, + { + id: "7357921406", + receipt_id: "2ffVaK521mpN5ML4sAf6anWLXsJDdQMUPd3HsfB7skPs", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ETfjicJQujfXz6RCojEK4hDyvZsw7TStnDAKRHWxq4JN", + block_height: 125611506, + block_timestamp: 1723462910689606100, + }, + receipt_outcome: { + gas_burnt: 4918193951159.0, + tokens_burnt: 4.918193951159e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7VNJEtF1VBo8HSFH7wtUV7KQkHRw6USdvh6FXhQCshWj", + included_in_block_hash: "JDR3bPuVxS5YzD5o7yFdQ3LTTQFPwQapLvAdAnmqXLNj", + block_timestamp: "1723462909558564123", + block: { block_height: 125611505 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.918193951159e20, + args: '{"id": 23, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.4495343947550006e20 }, + }, + { + id: "7357921621", + receipt_id: "3aQzjzm1KdHULYv1gnk3Km8zYuwxxfyp3uk8wNAPWW1m", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "s3W4CTMPQkXNudzR6t1RkNKTeCewcFXrkKFp6R32UMQ", + block_height: 125611507, + block_timestamp: 1723462911504438500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "7VNJEtF1VBo8HSFH7wtUV7KQkHRw6USdvh6FXhQCshWj", + included_in_block_hash: "JDR3bPuVxS5YzD5o7yFdQ3LTTQFPwQapLvAdAnmqXLNj", + block_timestamp: "1723462909558564123", + block: { block_height: 125611505 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.4495343947550006e20 }, + }, + { + id: "7358062793", + receipt_id: "Fn5CFfSRuHCc8FyU5KsgE4ffnDKtUH5w5ipGj4SALPWc", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2BxwUTLATHBVoq8pZCdRBTUrV8vDstDVkazSBj5KJobM", + block_height: 125611814, + block_timestamp: 1723463259327007700, + }, + receipt_outcome: { + gas_burnt: 1506090558031.0, + tokens_burnt: 1.506090558031e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "45srJ2Y17mJCUaKpweTkeSLPeRtnz2QxR2T2ZduRjZ4M", + included_in_block_hash: "vDTP4nd7CnPZTRuNWy8WYd45mqAZ81F9jH7S6Ret1eH", + block_timestamp: "1723463258185772531", + block: { block_height: 125611813 }, + receipt_conversion_tokens_burnt: "31656052106800000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 1e23, + fee: 1.506090558031e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "megha19.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["theori.near", "megha19.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Remove Member"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 1.822651079099e20 }, + }, + { + id: "7358083179", + receipt_id: "HT1G6zdHNseY2aVtWW9wzKrJJivRA3zx8BsnjdQ8JQb6", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FVt2FgR8k9fXvESA9QCSJkvnDPhBSJ7GN5KzbjGva2sV", + block_height: 125611844, + block_timestamp: 1723463295939436300, + }, + receipt_outcome: { + gas_burnt: 4534907479798.0, + tokens_burnt: 4.534907479798e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5grAW7D4BLsvTbKd8VkKrzeSwyxn7S2EXNF3a1mZPvJi", + included_in_block_hash: "89HUiQQDgTTt5wTVof5XcABc3nbrKk3EsvspThoT5883", + block_timestamp: "1723463294951720851", + block: { block_height: 125611843 }, + receipt_conversion_tokens_burnt: "31656052106800000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.534907479798e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "megha19.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["theori.near", "megha19.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Remove Member"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.851468000866e20 }, + }, + { + id: "7358084489", + receipt_id: "J1qq96LrArRDE6Ak1mWV7EuqKYpn8vSFgNcFPRgdUrFF", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DGCVbrpgE7jtrL6bogAXSpTWua1biCNw3eSz5oRupsYF", + block_height: 125611847, + block_timestamp: 1723463299632083200, + }, + receipt_outcome: { + gas_burnt: 4816601935703.0, + tokens_burnt: 4.8166019357030004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5UzoXXHgybFVXAU7mfyXHbuQDdor4GrqzBuxMXK3LQvN", + included_in_block_hash: "HRfs6FSszuWS6WnVjJWYjcQC9KoY9LbyxSmAWJvbS23D", + block_timestamp: "1723463298429211146", + block: { block_height: 125611846 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.8166019357030004e20, + args: '{"id": 24, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.347942379299e20 }, + }, + { + id: "7358085020", + receipt_id: "2x6nwFMXX4J5gtMnE7B8u7pPbnmaRDA1MPaBseLKCk3q", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HCNiXE4dveVxryPaed1WxGgY2KvzNytS6PgfRG2HCg7A", + block_height: 125611848, + block_timestamp: 1723463300769513000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "5UzoXXHgybFVXAU7mfyXHbuQDdor4GrqzBuxMXK3LQvN", + included_in_block_hash: "HRfs6FSszuWS6WnVjJWYjcQC9KoY9LbyxSmAWJvbS23D", + block_timestamp: "1723463298429211146", + block: { block_height: 125611846 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.347942379299e20 }, + }, + { + id: "7358790930", + receipt_id: "AWeigNqjSifkdJvDbYh6Drz7h2PymLiVqGFaZCstsD5H", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HsrJk7oEQD8pmQcadoZM14oUKUGFMJnzrREmCErvJFxU", + block_height: 125613111, + block_timestamp: 1723464883520570600, + }, + receipt_outcome: { + gas_burnt: 4505547919306.0, + tokens_burnt: 4.5055479193059996e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CErhmhzpoNJaDYfPg9NmQFBukFJMz5KGG6D1yCjP4LKQ", + included_in_block_hash: "GdX4LWqAue3DctSVcUDgT6us5T555tFRZn1Bi1SD5ha", + block_timestamp: "1723464882244340961", + block: { block_height: 125613110 }, + receipt_conversion_tokens_burnt: "31646661184000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.5055479193059996e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["megha19.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Remove Member"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.8220145311460006e20 }, + }, + { + id: "7358793102", + receipt_id: "A3KXah6NC4qdLiZQCa7gvhqjBDHV4Rv1W2xLCxGa1hcM", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9Tjw6MhY8Bc5zE2n5sajn8aK29hCQwaWL8iUPK6LT7gj", + block_height: 125613115, + block_timestamp: 1723464888731220200, + }, + receipt_outcome: { + gas_burnt: 4769495070971.0, + tokens_burnt: 4.7694950709709996e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "28x3jo3Lvg2pDdaApYK81ZWR5xaZNYd8tAepmZXuK6WS", + included_in_block_hash: "FAToujSY49h43x75nh2jzjkfFtakJbGzmnCFS9Ac4rzB", + block_timestamp: "1723464887451234331", + block: { block_height: 125613114 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.7694950709709996e20, + args: '{"id": 25, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.300835514567e20 }, + }, + { + id: "7358793805", + receipt_id: "52ThMyy5ZSTg7o1P58mhHMssdztTQnvnRYXrqLiJk31U", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7G3YoPFqCQuUveSmgd8e3jvbTxNsKNhUUXoaKEwb1RNT", + block_height: 125613116, + block_timestamp: 1723464890163030300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "28x3jo3Lvg2pDdaApYK81ZWR5xaZNYd8tAepmZXuK6WS", + included_in_block_hash: "FAToujSY49h43x75nh2jzjkfFtakJbGzmnCFS9Ac4rzB", + block_timestamp: "1723464887451234331", + block: { block_height: 125613114 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.300835514567e20 }, + }, + { + id: "7359241577", + receipt_id: "8Pt5f5H28k9bqGw5mWbBn8LcqJX7Ar1ZBuiH4hGDVTCE", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BnNNRmyVGBQ6TEKK6691zr4hBKZ1m56rbXy3wmnsHSPK", + block_height: 125613963, + block_timestamp: 1723465862033361700, + }, + receipt_outcome: { + gas_burnt: 4499108177389.0, + tokens_burnt: 4.4991081773890005e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CYWSjRrsdvNdpdqmdG7ZzfkLVM8rexrWsEDcqoWiukJe", + included_in_block_hash: "5gz8VTF5zjbgsrofmyKVmV1fSBrHo4MNPP6hiMRy9Lv4", + block_timestamp: "1723465860795097990", + block: { block_height: 125613962 }, + receipt_conversion_tokens_burnt: "31656052106800000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.4991081773890005e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["megha19.near", "theori.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "theori.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.815668698457e20 }, + }, + { + id: "7359243136", + receipt_id: "EKY5TWU8DyNVQ7tJMpsSw5CsxSGSwej5USTFhUKZqT1w", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4LTARBGjjNbhEvGmTcDuJYNK48nYADbg6XZg3j3X6CAP", + block_height: 125613966, + block_timestamp: 1723465865335252200, + }, + receipt_outcome: { + gas_burnt: 4788059126081.0, + tokens_burnt: 4.7880591260810006e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BWXVV6w3CNJsnnsYwmikc53Xy4j3j8CuKYpVQ1Jnuzz", + included_in_block_hash: "4VEcyg5bdsZ4Y2fcFcsKzkhnpE3Mnctc6KEDAd1K8irc", + block_timestamp: "1723465864442544816", + block: { block_height: 125613965 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.7880591260810006e20, + args: '{"id": 26, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.319399569677e20 }, + }, + { + id: "7359244039", + receipt_id: "9wxWyn6KTuqM8F1zW1kvFr7JT6GhxDEtyYFTZQdP7ZaY", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6XyyfuzPTetpy18krRApRCn32iqBeveRr2kSeiDseUA", + block_height: 125613967, + block_timestamp: 1723465866451210200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "BWXVV6w3CNJsnnsYwmikc53Xy4j3j8CuKYpVQ1Jnuzz", + included_in_block_hash: "4VEcyg5bdsZ4Y2fcFcsKzkhnpE3Mnctc6KEDAd1K8irc", + block_timestamp: "1723465864442544816", + block: { block_height: 125613965 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.319399569677e20 }, + }, + { + id: "7359279906", + receipt_id: "3P3MdGpsSqhKui6UeUkY1Fwo7i7jQHaCHfVSxvZ6VUkM", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5irB86MG7winxCC9HvE4VsYPtxKcu9DUf8MPacGg3gX5", + block_height: 125614021, + block_timestamp: 1723465930827940400, + }, + receipt_outcome: { + gas_burnt: 4487895984720.0, + tokens_burnt: 4.48789598472e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FyapYVxecmDujHo7rkWygYVcnSA5iorRy6874Vw5Pn9W", + included_in_block_hash: "DGaAQJuA4E6DeVs9bdmE9o65vfrmiU7U7n5HwvkxhSZM", + block_timestamp: "1723465929455850487", + block: { block_height: 125614020 }, + receipt_conversion_tokens_burnt: "31661194755000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.48789598472e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "megha19.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "theori.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.80450793227e20 }, + }, + { + id: "7359281837", + receipt_id: "F65szAhqbguoXxwY6xzbZx3jsAAGuwKXppTagt4ovzYr", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Agd4P5arZ4jUhmJtQacJgPbuSepdtg5pCy2vVYcvpnXK", + block_height: 125614024, + block_timestamp: 1723465934724916000, + }, + receipt_outcome: { + gas_burnt: 4839089982599.0, + tokens_burnt: 4.839089982599e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "6YMistRfms7myPwTaBc1FvKDEw8njD6qBwJTBdTwbcg4", + included_in_block_hash: "2Zm4hJgGwb1hekcRZRqG1XQYKaVN3HxaVBFTt7ehW5zu", + block_timestamp: "1723465933495660995", + block: { block_height: 125614023 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.839089982599e20, + args: '{"id": 27, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.370430426195e20 }, + }, + { + id: "7359282699", + receipt_id: "639E6akgUkTsL239YqhERSiHdzPWQWf8gg1zSYfX9psD", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6Hz5BubhTscVyTT89Reg3T5zc1vV22AYN4RmjwNfJqDd", + block_height: 125614025, + block_timestamp: 1723465935706720800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "6YMistRfms7myPwTaBc1FvKDEw8njD6qBwJTBdTwbcg4", + included_in_block_hash: "2Zm4hJgGwb1hekcRZRqG1XQYKaVN3HxaVBFTt7ehW5zu", + block_timestamp: "1723465933495660995", + block: { block_height: 125614023 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.370430426195e20 }, + }, + { + id: "7371970113", + receipt_id: "87KwqjiZz9of1PhA5qxQk6iCuQGQtWtEs4WyR4tTz4K3", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Fda7B5t65MPsnLeXEHtLGWxgnruicCCocyEqm4Hcoijc", + block_height: 125638992, + block_timestamp: 1723494223668574200, + }, + receipt_outcome: { + gas_burnt: 4588811236420.0, + tokens_burnt: 4.5888112364199995e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5Zo6coKkUeTr1KGaEau87LpHhMEqzcgcrmRZSi3e4giK", + included_in_block_hash: "DeffcAG2JVK83LF91uWAVwVoyEXRrRc5eLwXyhc2T7U4", + block_timestamp: "1723494222636085024", + block: { block_height: 125638991 }, + receipt_conversion_tokens_burnt: "31671480051400000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.5888112364199995e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["petersalomonsen.near", "theori.near", "megha19.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["theori.near", "megha19.near", "petersalomonsen.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "theori.near", "petersalomonsen.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.9055260369339993e20 }, + }, + { + id: "7371972459", + receipt_id: "HyLqwJMPBcztevWYyhQW8CQGgk2huhu4UPUvhZf2H5Vy", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "CsXK1U9E5UsQwqNyHhWKDHamyzNyAyTxXzk3vecXTZXn", + block_height: 125638996, + block_timestamp: 1723494228176413200, + }, + receipt_outcome: { + gas_burnt: 4922838949931.0, + tokens_burnt: 4.9228389499309995e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7hYdVYiSJ3X4nMNkBCzZ2zA18uXNtDJeY8c8vFrDLF16", + included_in_block_hash: "CWhEMRDjr1ynnsqC6bxsvbFGBnMrhVh77erTgPLXpVeK", + block_timestamp: "1723494226910618577", + block: { block_height: 125638995 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.9228389499309995e20, + args: '{"id": 28, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.454179393527e20 }, + }, + { + id: "7371973285", + receipt_id: "dYtmZh9qyyXpYJqjuLCZTWB1qiSNUiy2ART3RNzxmUf", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6Z34HmRHxqxtrj1CTDa2MU5wY6u1gRMVi8D1ASrkaqEy", + block_height: 125638997, + block_timestamp: 1723494229458127600, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "7hYdVYiSJ3X4nMNkBCzZ2zA18uXNtDJeY8c8vFrDLF16", + included_in_block_hash: "CWhEMRDjr1ynnsqC6bxsvbFGBnMrhVh77erTgPLXpVeK", + block_timestamp: "1723494226910618577", + block: { block_height: 125638995 }, + receipt_conversion_tokens_burnt: "30815788109600000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.454179393527e20 }, + }, + { + id: "7372000013", + receipt_id: "GMThLMyJuDk9SiPzWTpL4cXJHXaabEnTbEma2XzCn8wB", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6zxP69GLqqQKF4fqGtSzet5EvGhMqfvH4iPGGH2pQejY", + block_height: 125639039, + block_timestamp: 1723494276743037000, + }, + receipt_outcome: { + gas_burnt: 3306033972232.0, + tokens_burnt: 3.306033972232e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CB3UpUa1EWWWGrTUzxncReNzqLCd3YhVGeyHywxiJD9B", + included_in_block_hash: "4p1FKvcqQBNajeKhNxxdB8Ln4q7YD2KskPdzusg61Z79", + block_timestamp: "1723494275605956609", + block: { block_height: 125639038 }, + receipt_conversion_tokens_burnt: "30815564516200000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.306033972232e20, + args: '{"id": 15, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.837372179894e20 }, + }, + { + id: "7372001089", + receipt_id: "6TMhUt9Ay3By3ZnwRmE4D6b319d2QSy896rYLpVi5nqG", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8ZGNmCPMixfF1vshqz9nE4HTX3aoBivGprPhgBVZEyHJ", + block_height: 125639040, + block_timestamp: 1723494277755235800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "CB3UpUa1EWWWGrTUzxncReNzqLCd3YhVGeyHywxiJD9B", + included_in_block_hash: "4p1FKvcqQBNajeKhNxxdB8Ln4q7YD2KskPdzusg61Z79", + block_timestamp: "1723494275605956609", + block: { block_height: 125639038 }, + receipt_conversion_tokens_burnt: "30815564516200000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.837372179894e20 }, + }, + { + id: "7450882524", + receipt_id: "CmWwXPA6S3yfBa7oSPcUvBymfBm4EkC6niYTkZutMJx9", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5PrUy6SyCWwhUtPMNjHCLnd5A5MwoWzjyfLci9MPw3My", + block_height: 125845761, + block_timestamp: 1723741238545369000, + }, + receipt_outcome: { + gas_burnt: 2872539971232.0, + tokens_burnt: 2.872539971232e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4igiuzRTZpX59uQPQA8XhCCZ2uNgQCwjQRTqKHqnr9XT", + included_in_block_hash: "7Sn2MpdPT2T32wyYMy6Wyd2ug5fs7uNVvxxLqVZvU6tV", + block_timestamp: "1723741237484372705", + block: { block_height: 125845760 }, + receipt_conversion_tokens_burnt: "33295039923000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.872539971232e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Reza DevRel Contributor Report 5 August - 14 August\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Following an initial alignment with @gagdiez.near, and as the winner of the AI track on EthGlobal Brussels, I am looking forward to contribute to the AI docs as well as AI derived tooling such as the near-py package.\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":181}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.205490370462e20 }, + }, + { + id: "7450904645", + receipt_id: "7J4oGy3csodXweMFBhihcLQUNPqggCXPRSZ4JfAyUdh9", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "G2aD6jrAbk8Ja2W4k48x5WnFjZDS8kw1gkxb4VJ1p523", + block_height: 125845831, + block_timestamp: 1723741331738389500, + }, + receipt_outcome: { + gas_burnt: 3298358229292.0, + tokens_burnt: 3.298358229292e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AVnYuDup8zSoUgzRFr3MNmfVMAG93zHwRvpcsmwATFuZ", + included_in_block_hash: "FbfFq1PobeeNvtG8oS5zFAuqZZnLjaum8GbAV1qzr3G6", + block_timestamp: "1723741330344335758", + block: { block_height: 125845830 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.298358229292e20, + args: '{"id": 29, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.831650691537e20 }, + }, + { + id: "7450905289", + receipt_id: "HhvFZwRNAkeovxbtt2eaixDdLSTBuLNKMnJ38AhS9PU2", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "z5o7gc1CzinAQ9K5Q6gyiJ8b3JwjUxPB1jdTe8vumG8", + block_height: 125845832, + block_timestamp: 1723741333024752400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "AVnYuDup8zSoUgzRFr3MNmfVMAG93zHwRvpcsmwATFuZ", + included_in_block_hash: "FbfFq1PobeeNvtG8oS5zFAuqZZnLjaum8GbAV1qzr3G6", + block_timestamp: "1723741330344335758", + block: { block_height: 125845830 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.831650691537e20 }, + }, + { + id: "7451092792", + receipt_id: "2sfsUTGmGwewn1EgcQSbcVyU6FEcgmBJKCdPw5Yn7AM8", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BSSBB9VFNvuryCP4PnyUJjiHgEDG2VzctQVRF1zrFMXj", + block_height: 125846240, + block_timestamp: 1723741876029591600, + }, + receipt_outcome: { + gas_burnt: 2922070816178.0, + tokens_burnt: 2.9220708161779997e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "6dQ18HojFTspH5U5T8xfbdNynHfYnunG18FhtbHQgUBf", + included_in_block_hash: "BY4bTsPxiD9FpF5Sgwnqrx8xrG4btG2FuU8t6Q5q5rsn", + block_timestamp: "1723741874713226714", + block: { block_height: 125846239 }, + receipt_conversion_tokens_burnt: "31773929414500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.9220708161779997e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "914000000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Test1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Test2\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"hello\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.239810110323e20 }, + }, + { + id: "7451107188", + receipt_id: "526B4nbpc4LVvFnanfXY1hKjYqvFNy4EEMW2rGsjuDqB", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HXEa5rXo7cktVaHw3sdwJUPgidsouYwMpY2LTHUakrGh", + block_height: 125846285, + block_timestamp: 1723741935765421800, + }, + receipt_outcome: { + gas_burnt: 2853812369398.0, + tokens_burnt: 2.8538123693980002e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5VkiweCPU3qvBXXgnWDbJKfaWi8AaPBjZh2qjqzAZ1UY", + included_in_block_hash: "CcxKTYTXrzoMrdhQ6nwbiyr6ekHUDCZzw7iV7xgsf9hn", + block_timestamp: "1723741934446471241", + block: { block_height: 125846284 }, + receipt_conversion_tokens_burnt: "32412891195500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.8538123693980002e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "56000000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevRel Contributor Report for 2024-07-29 - 2024-08-11\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Decentralized DevRel Contribution Report by Garik Covering 29 July - 11 August\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":180}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.177941281353e20 }, + }, + { + id: "7451110907", + receipt_id: "7R6nykjkaFsUjPG4hVjG4kZVfYstMxzts4pyrAQhzEYR", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Cyp4CmRmXnNxSDv4VKG9cikhW4WqdDnr7Q7X88R2SLtn", + block_height: 125846300, + block_timestamp: 1723741955666714600, + }, + receipt_outcome: { + gas_burnt: 3697603145497.0, + tokens_burnt: 3.697603145497e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BAiPuT8FdDqdUdQjWophHtwFgJZqddV5cMV8dfWXUyXd", + included_in_block_hash: "CboJsgkN9eKi7GLdXF9XdwNSQdXiZXriu7Pmr9V8brRH", + block_timestamp: "1723741954318824665", + block: { block_height: 125846299 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.697603145497e20, + args: '{"id": 31, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.576545619189e20 }, + }, + { + id: "7451111317", + receipt_id: "CkJDvmcQyXicmxXsRuTxHQjsqVqXHpJ8JFRkzNmcUDBr", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EBj6ghHz27GYL7M4nCLjh8i7uRyPE3FaTu1FHMbPQY7b", + block_height: 125846301, + block_timestamp: 1723741956749633500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "BAiPuT8FdDqdUdQjWophHtwFgJZqddV5cMV8dfWXUyXd", + included_in_block_hash: "CboJsgkN9eKi7GLdXF9XdwNSQdXiZXriu7Pmr9V8brRH", + block_timestamp: "1723741954318824665", + block: { block_height: 125846299 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 5.6e19, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.576545619189e20 }, + }, + { + id: "7451111318", + receipt_id: "EbWo7DxWhhFfVCxxW788oowKbsU18h67JJX27C1ARwnK", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EBj6ghHz27GYL7M4nCLjh8i7uRyPE3FaTu1FHMbPQY7b", + block_height: 125846301, + block_timestamp: 1723741956749633500, + }, + receipt_outcome: { + gas_burnt: 3122419765232.0, + tokens_burnt: 3.122419765232e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BAiPuT8FdDqdUdQjWophHtwFgJZqddV5cMV8dfWXUyXd", + included_in_block_hash: "CboJsgkN9eKi7GLdXF9XdwNSQdXiZXriu7Pmr9V8brRH", + block_timestamp: "1723741954318824665", + block: { block_height: 125846299 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.122419765232e20, + args: '{"proposal_id": 31}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.576545619189e20 }, + }, + { + id: "7451111951", + receipt_id: "GQ3UGnbHokeWH12HHZNc55CuQu6HgXLssTjRxKkBWNXs", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BRDdoVdi5jamMJoYXNvoDwqYgYZCSjBMA5g8gVoHawHy", + block_height: 125846303, + block_timestamp: 1723741959476332300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "BAiPuT8FdDqdUdQjWophHtwFgJZqddV5cMV8dfWXUyXd", + included_in_block_hash: "CboJsgkN9eKi7GLdXF9XdwNSQdXiZXriu7Pmr9V8brRH", + block_timestamp: "1723741954318824665", + block: { block_height: 125846299 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.576545619189e20 }, + }, + { + id: "7451116377", + receipt_id: "FPyRLhGhSwpTsRu2TDHZ1d8Qr1tN4wz5cX1uDjLxdGUo", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2BRZU33fU46XDc1LaNBnKBKw4kCotStWaotmnBY7ty3f", + block_height: 125846321, + block_timestamp: 1723741983848455000, + }, + receipt_outcome: { + gas_burnt: 3679413957517.0, + tokens_burnt: 3.679413957517e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "24gMMuxBjAL8vaDnqaXA1pTuUwHHENSC4yK4aWzMhuWQ", + included_in_block_hash: "5was7V5Zkv5Ggg5t8FWeRsM5vkGmoH2YNkkAv73PmQ6W", + block_timestamp: "1723741982523831884", + block: { block_height: 125846320 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.679413957517e20, + args: '{"id": 30, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.541381631085e20 }, + }, + { + id: "7451116871", + receipt_id: "FatFuNKuDycCgkjw4i1K9w9cVTsfDBWhnbWep984KVQa", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3wiqED4Fsc8N1gHVZMBMC8k2SXayHcNTHfe1j4DAFd2j", + block_height: 125846322, + block_timestamp: 1723741985012734500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "24gMMuxBjAL8vaDnqaXA1pTuUwHHENSC4yK4aWzMhuWQ", + included_in_block_hash: "5was7V5Zkv5Ggg5t8FWeRsM5vkGmoH2YNkkAv73PmQ6W", + block_timestamp: "1723741982523831884", + block: { block_height: 125846320 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 9.14e20, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.541381631085e20 }, + }, + { + id: "7451116872", + receipt_id: "Fi2tvwoEy1iiSW4N7pHtWkMaknyzx83rFd9dsmZ3KRCy", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3wiqED4Fsc8N1gHVZMBMC8k2SXayHcNTHfe1j4DAFd2j", + block_height: 125846322, + block_timestamp: 1723741985012734500, + }, + receipt_outcome: { + gas_burnt: 3105444965108.0, + tokens_burnt: 3.105444965108e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "24gMMuxBjAL8vaDnqaXA1pTuUwHHENSC4yK4aWzMhuWQ", + included_in_block_hash: "5was7V5Zkv5Ggg5t8FWeRsM5vkGmoH2YNkkAv73PmQ6W", + block_timestamp: "1723741982523831884", + block: { block_height: 125846320 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.105444965108e20, + args: '{"proposal_id": 30}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.541381631085e20 }, + }, + { + id: "7451117351", + receipt_id: "3mFvXN3GGzu2bvgtAwYTansaErFFrvNJ9kZoh2hDsRhb", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "81kGdpuLHy5ojTe6XV13g9DiajCwFYD6Gn7p9grC9ZK5", + block_height: 125846324, + block_timestamp: 1723741987677219600, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "24gMMuxBjAL8vaDnqaXA1pTuUwHHENSC4yK4aWzMhuWQ", + included_in_block_hash: "5was7V5Zkv5Ggg5t8FWeRsM5vkGmoH2YNkkAv73PmQ6W", + block_timestamp: "1723741982523831884", + block: { block_height: 125846320 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.541381631085e20 }, + }, + { + id: "7451141436", + receipt_id: "EPszykoBNVfjWW1wkbev1CxGwCjGm6XCVtE21C4vqTrc", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AJJZfhi8ZN4XyceySJdbKg1i2Czyo8JBNdMmEkUtjdNM", + block_height: 125846399, + block_timestamp: 1723742086855676000, + }, + receipt_outcome: { + gas_burnt: 2846502749260.0, + tokens_burnt: 2.84650274926e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EMZ1YoU1WTPBujNyNybPZnkuaHiS3gdPhPZYqzrC9vZt", + included_in_block_hash: "3dEpeayMT2iRMHHhE7zPDBit9ZAHkLbnXAQaRpeGUAxq", + block_timestamp: "1723742085600131905", + block: { block_height: 125846398 }, + receipt_conversion_tokens_burnt: "32698993485500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.84650274926e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "2000000000000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":175}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.173492684115e20 }, + }, + { + id: "7451278204", + receipt_id: "6iCega2fdy7Vk8y8Uj9TQLsmh24e6HGKjPzdmG8SgM1J", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GFBdW8DvL9Cvete73iomZJGz7gEVhVoz4ddST8L3Dpjk", + block_height: 125846714, + block_timestamp: 1723742502335517200, + }, + receipt_outcome: { + gas_burnt: 4518620454174.0, + tokens_burnt: 4.5186204541740004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AqLTXynrVnYVzvWBYDVXK9PKD5aGCHY1w6MNGkj1NrNe", + included_in_block_hash: "5EAQJm3bgHGUMJQiKpE4x5gVFLJt7HGJcp2YAb4wg4c1", + block_timestamp: "1723742500868465207", + block: { block_height: 125846713 }, + receipt_conversion_tokens_burnt: "49331073277500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.5186204541740004e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["petersalomonsen.near", "theori.near", "megha19.near", "freski.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["theori.near", "megha19.near", "petersalomonsen.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.0119311869490004e20 }, + }, + { + id: "7451279479", + receipt_id: "35A98Qt5y7uejet4jkwVbHLLEHVqt4uh6c8byy2S1Se9", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "78wgRcB3gquuQ3nswQLQRw3NNxkR3pbRRWQhHT1Q6D2u", + block_height: 125846718, + block_timestamp: 1723742507333187600, + }, + receipt_outcome: { + gas_burnt: 4866165565943.0, + tokens_burnt: 4.866165565943e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9Tp98ZQS61P4QqLmdRcNjtigs124KFeSoXYJDQ2FH9Pu", + included_in_block_hash: "2o8yUZhSSFFuRfF9rMb4XjysKk3C5zmUQG6dXZduTF6W", + block_timestamp: "1723742506025287512", + block: { block_height: 125846717 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.866165565943e20, + args: '{"id": 33, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.399505711903e20 }, + }, + { + id: "7451279933", + receipt_id: "63EmPBmQugjPvdYU53UXupFt3x5mbJS4MmgL87uQq3rk", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AjS99CRudk1qNeqKeoyRhMQEq4SsB8H7jG9SSxaWXzqs", + block_height: 125846719, + block_timestamp: 1723742508674691800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "9Tp98ZQS61P4QqLmdRcNjtigs124KFeSoXYJDQ2FH9Pu", + included_in_block_hash: "2o8yUZhSSFFuRfF9rMb4XjysKk3C5zmUQG6dXZduTF6W", + block_timestamp: "1723742506025287512", + block: { block_height: 125846717 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.399505711903e20 }, + }, + { + id: "7451708267", + receipt_id: "FxPCYAm59qHk7Kf3QvTZ55SRBdkDguaFeVVy6C6E1ob8", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3Av6vNi1Q9EMiMqFVbUSPgzp1Efm6SjaNoA5WhQa6RxU", + block_height: 125847527, + block_timestamp: 1723743576313484300, + }, + receipt_outcome: { + gas_burnt: 2865376896043.0, + tokens_burnt: 2.8653768960429998e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BWbP2TAuURHAR3PaoeDBUK43XdCut4bkjrDGjood3Dr5", + included_in_block_hash: "9iWezGRN9EgfwJ6SZNBP4qRiAWjwxg8oZwNaL2nCT4TW", + block_timestamp: "1723743574899795897", + block: { block_height: 125847526 }, + receipt_conversion_tokens_burnt: "32684688371000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.8653768960429998e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "40000000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":177}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.1922237797529996e20 }, + }, + { + id: "7477725744", + receipt_id: "GWHzZNgKGPhNb5D5qyzNAGKsUhRbxqHmu9UC1AYUzMtu", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2WpEySkMCyMgmigTJynMJGgUgqqvi8cQMYLcM5kjhV2V", + block_height: 125908769, + block_timestamp: 1723823339220699600, + }, + receipt_outcome: { + gas_burnt: 4529424117099.0, + tokens_burnt: 4.529424117099e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Gk88t4RTy4k7VkgPAdXHryAGpnD9bso1oPsjjvR2sXPC", + included_in_block_hash: "8nNfkh49VU33KpAZm2uxe1JzxiKZ9krafHBRNgAWPpmL", + block_timestamp: "1723823337984851383", + block: { block_height: 125908768 }, + receipt_conversion_tokens_burnt: "49474124422500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.529424117099e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["theori.near", "megha19.near", "petersalomonsen.near", "treasurytestuserledger.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.0241653613240005e20 }, + }, + { + id: "7477727238", + receipt_id: "5MkcYbvHQXq1D1Qe97HiVecik6gBWBcvm9btc1pcSTBT", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FYcXCt8WzsVRLWWDXEBt2zvZuz7TQktNAdrtdxxB4xFf", + block_height: 125908773, + block_timestamp: 1723823344239538700, + }, + receipt_outcome: { + gas_burnt: 4961855371025.0, + tokens_burnt: 4.961855371025001e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "ApTxqsmWhHufaUvqKmf12zaxkaNwQEAdpYYrB4jyvZTP", + included_in_block_hash: "CudNPgHQVz5uDHSMax1paEGEriEV9KBLvufaTnrBoUDa", + block_timestamp: "1723823342977836465", + block: { block_height: 125908772 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.961855371025001e20, + args: '{"id": 35, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.495195516985e20 }, + }, + { + id: "7477727569", + receipt_id: "igU23KEykYs7MsLD8o2gfcdQD6LpKhZReKEQaknRErW", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BBpTGBR3CrMrnK3P2woefrdEiEwswsKq7PoeGqCysqkx", + block_height: 125908774, + block_timestamp: 1723823345945950500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "ApTxqsmWhHufaUvqKmf12zaxkaNwQEAdpYYrB4jyvZTP", + included_in_block_hash: "CudNPgHQVz5uDHSMax1paEGEriEV9KBLvufaTnrBoUDa", + block_timestamp: "1723823342977836465", + block: { block_height: 125908772 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.495195516985e20 }, + }, + { + id: "7484007783", + receipt_id: "2RvSLHZS5FVz6Zu5KhaYhJCuWY4H8CYxD6prTYmVuu1o", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FUxNcY3LrckL3psVURqLMPp5W9WPPkYibBiChs2WZq5m", + block_height: 125923945, + block_timestamp: 1723842544394538200, + }, + receipt_outcome: { + gas_burnt: 4627409249104.0, + tokens_burnt: 4.627409249104e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3dbB9kmKm7dQQXNyWASMJB2dMUzT95WQgqyLGHxv2Mmd", + included_in_block_hash: "HyvnQgenzVx2PJEiqJkrNp7b4YhaP4eADx5hVp9a2ua8", + block_timestamp: "1723842543025674620", + block: { block_height: 125923944 }, + receipt_conversion_tokens_burnt: "49793605313000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.627409249104e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "petersalomonsen.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "theori.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.125345302234e20 }, + }, + { + id: "7484008830", + receipt_id: "DPmhpZgWVpf7GP5KNs61vZAS9gC2BmfNTfP6dignngkq", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GM6xSkXhRN3zfUpWw2dpzEMjNq3UURnPMc1A5oe1dNrd", + block_height: 125923949, + block_timestamp: 1723842549653374000, + }, + receipt_outcome: { + gas_burnt: 4987275351383.0, + tokens_burnt: 4.9872753513830004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CFLpApmWwfuBgCgR8UQQXREknj51TyT85sFiPdHcKXw7", + included_in_block_hash: "GXLqNfMK4pyofPfgcb9H6XJYH3AqSrFDWCCc54tJkrxq", + block_timestamp: "1723842548600295210", + block: { block_height: 125923948 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.9872753513830004e20, + args: '{"id": 36, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.5206154973429996e20 }, + }, + { + id: "7484009260", + receipt_id: "J3w6o9YK3DBzgFnSeoJwrsq3WyxSdbF4VL2c12r1hi4Q", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "E71QGBVpyTKmwLFF7Kd9kvk3Le818PVvXApWRwrY3sbe", + block_height: 125923950, + block_timestamp: 1723842550960031200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "CFLpApmWwfuBgCgR8UQQXREknj51TyT85sFiPdHcKXw7", + included_in_block_hash: "GXLqNfMK4pyofPfgcb9H6XJYH3AqSrFDWCCc54tJkrxq", + block_timestamp: "1723842548600295210", + block: { block_height: 125923948 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.5206154973429996e20 }, + }, + { + id: "7484053084", + receipt_id: "Dwf29WQDUVtsWAHrFYiyhQsZPnWoyCRZ2pMtbDWEX9ut", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BfW5VhS7Q9TyVP1ym7SrZoFLZCLb4cjvYN453faqSeJb", + block_height: 125924060, + block_timestamp: 1723842696005935000, + }, + receipt_outcome: { + gas_burnt: 2958013006700.0, + tokens_burnt: 2.9580130067e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "B3vYj9Pa4Kp7F2qgnmCcauBcVddD8MQphxUta5Cfo3te", + included_in_block_hash: "E4vRRDPQymDZUvzEdNnfdPmovhWJYywwHR2FQKXZPkg5", + block_timestamp: "1723842694990155947", + block: { block_height: 125924059 }, + receipt_conversion_tokens_burnt: "32689456742500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.9580130067e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "100000000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":177}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.284907574125e20 }, + }, + { + id: "7484057123", + receipt_id: "7iQcgjWhZUMMVAQVAaJyhiUpFPuQyUMPLC5ju5osiNiX", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5MxozahZSDshnRG8udCxHqQhLbKdGVqNDLdXPoZXehes", + block_height: 125924074, + block_timestamp: 1723842714453990100, + }, + receipt_outcome: { + gas_burnt: 3717940738423.0, + tokens_burnt: 3.717940738423e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EsZQ2NVTGDdvotRSBxbXvRiLvZipbnBBs1WUV9aRHuya", + included_in_block_hash: "G3uyPfBKj962cZrz4hqYmMRsmrtd4Svi4P7GsfFPf6hQ", + block_timestamp: "1723842713351613860", + block: { block_height: 125924073 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.717940738423e20, + args: '{"id": 37, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.646864836729e20 }, + }, + { + id: "7484057554", + receipt_id: "8cGqmiA1dLTrHMkmXv7WwYRL9nWbNZdL6wN7GCESf4cZ", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BMmPdEFBAXCWjivKpX9qzWAZhMiqLRpXxujx6FBrHLaW", + block_height: 125924075, + block_timestamp: 1723842715717829400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "EsZQ2NVTGDdvotRSBxbXvRiLvZipbnBBs1WUV9aRHuya", + included_in_block_hash: "G3uyPfBKj962cZrz4hqYmMRsmrtd4Svi4P7GsfFPf6hQ", + block_timestamp: "1723842713351613860", + block: { block_height: 125924073 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e20, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.646864836729e20 }, + }, + { + id: "7484057557", + receipt_id: "6a2cP6RkofRXEyxK2Nxp64LBQQ1qtnL96eja38zTBqVY", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BMmPdEFBAXCWjivKpX9qzWAZhMiqLRpXxujx6FBrHLaW", + block_height: 125924075, + block_timestamp: 1723842715717829400, + }, + receipt_outcome: { + gas_burnt: 3172401389846.0, + tokens_burnt: 3.1724013898460004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EsZQ2NVTGDdvotRSBxbXvRiLvZipbnBBs1WUV9aRHuya", + included_in_block_hash: "G3uyPfBKj962cZrz4hqYmMRsmrtd4Svi4P7GsfFPf6hQ", + block_timestamp: "1723842713351613860", + block: { block_height: 125924073 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.1724013898460004e20, + args: '{"proposal_id": 37}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.646864836729e20 }, + }, + { + id: "7484058036", + receipt_id: "56aAmtZufaKNLfDvAZAG5ghFEkSakcRQVJy5YS863bp8", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "93oLBxRdHgvXFkc5NrSVU1SFPWp6qRanTzhafnYewczN", + block_height: 125924077, + block_timestamp: 1723842718337757200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "EsZQ2NVTGDdvotRSBxbXvRiLvZipbnBBs1WUV9aRHuya", + included_in_block_hash: "G3uyPfBKj962cZrz4hqYmMRsmrtd4Svi4P7GsfFPf6hQ", + block_timestamp: "1723842713351613860", + block: { block_height: 125924073 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.646864836729e20 }, + }, + { + id: "7484065677", + receipt_id: "7BFqwkNfKfnZYWTdqeFq5G11YHc7tQaRs4T5AG8XmtgA", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DirR1evCev9goxZvJx2G2vDRzy3d4SDXpT4QU62FmCJf", + block_height: 125924100, + block_timestamp: 1723842748736980500, + }, + receipt_outcome: { + gas_burnt: 2850579090840.0, + tokens_burnt: 2.85057909084e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2M6K9qrbRuZgaZfm7G8rKuZ3AFDQM3pM54rKTcJZyF5Y", + included_in_block_hash: "9JzSwNTatCmAefcM3R9HAefX3KhLezpJenfpSWLeP4GE", + block_timestamp: "1723842747489799185", + block: { block_height: 125924099 }, + receipt_conversion_tokens_burnt: "31735782442500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.85057909084e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.167936915265e20 }, + }, + { + id: "7484122348", + receipt_id: "69o5cHtyxgYsqHTRpsTqtpXG6PYx3C7j1aiBWoQYiy8W", + predecessor_account_id: "treasurytestuserledger.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FVAzzPskvtXxXEw4zYarTjH4StzyS8YGmcCaH7wDrnwh", + block_height: 125924185, + block_timestamp: 1723842860066923000, + }, + receipt_outcome: { + gas_burnt: 3325297015234.0, + tokens_burnt: 3.3252970152339997e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DhZG9rcVGxWYKMGGAA9AzEyYzo6UP3R77NzUvE3YAG4s", + included_in_block_hash: "6P7nzEZT5hF9J1Rb2rPHCtS8Kc9sjK58HPwTsRd4E3VZ", + block_timestamp: "1723842858675552027", + block: { block_height: 125924184 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.3252970152339997e20, + args: '{"id": 38, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.858589477479e20 }, + }, + { + id: "7484122895", + receipt_id: "GXGEGwuFaSAjctVDRznKRrYzvui5c7TT5ARd6oQUUXP2", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4683Ry2gMjJSPjcbeLJ25MoTSTKMpyeX9Dg8bqAGgkLu", + block_height: 125924186, + block_timestamp: 1723842861289177300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "DhZG9rcVGxWYKMGGAA9AzEyYzo6UP3R77NzUvE3YAG4s", + included_in_block_hash: "6P7nzEZT5hF9J1Rb2rPHCtS8Kc9sjK58HPwTsRd4E3VZ", + block_timestamp: "1723842858675552027", + block: { block_height: 125924184 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.858589477479e20 }, + }, + { + id: "7484134624", + receipt_id: "5jJsgvuHPmaQ1s7u9zXTqi4SuUhs8ZFujCh9QYoDj7iK", + predecessor_account_id: "treasurytestuserledger.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GqMVmzcjNb3Gvh9ttnDxBc7ZgZjzFjd2kZd8VaKpk2R9", + block_height: 125924223, + block_timestamp: 1723842907994023000, + }, + receipt_outcome: { + gas_burnt: 3693380576539.0, + tokens_burnt: 3.6933805765389995e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "ECKb86XPwRZNnisfz4JDMRfHvFxkYwaqTm99UeHJhevb", + included_in_block_hash: "UwjLQzwATHpDskZ2AAvGjX4q9wnatGNVxprgKM5NjjR", + block_timestamp: "1723842906285937375", + block: { block_height: 125924222 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.6933805765389995e20, + args: '{"id": 32, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 4.003538159999e20 }, + }, + { + id: "7484135177", + receipt_id: "FgZC664LqPLdFHDrZfDLwTBmPwNY9BR5HkjHURcJSiMT", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6PpcrCT752ghEnJXxWn5DGcu5GfPXj3xmRZ2z5crMjJi", + block_height: 125924225, + block_timestamp: 1723842909939255000, + }, + receipt_outcome: { + gas_burnt: 2957750738020.0, + tokens_burnt: 2.95775073802e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EcNQDytvfJSekDp9RtyWnS6EjfPFg56UMSaj3wWxrWDh", + included_in_block_hash: "A1omkgQdUW1Nefz8DZD2J6rFUh7mJjpvekk4Y27mfyQg", + block_timestamp: "1723842908827362698", + block: { block_height: 125924224 }, + receipt_conversion_tokens_burnt: "32684688371000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.95775073802e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "40000000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 27 July - 11 August\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":176}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.2845976217299996e20 }, + }, + { + id: "7484159243", + receipt_id: "AfgKGrsvXZ6goyoZ4Ckpz78vUVRZnkAU1bRtRuJMymCC", + predecessor_account_id: "treasurytestuserledger.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6geP7Nt3vB9X2Asx6G5NrZLHqBjnUFzDYb8WV5FZJogP", + block_height: 125924276, + block_timestamp: 1723842976825210000, + }, + receipt_outcome: { + gas_burnt: 3776312312095.0, + tokens_burnt: 3.776312312095e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "Ae1NpeaeQSwSfh94pS7seAYFvf1jMdSWAMAaKmndudK1", + included_in_block_hash: "CkCU3X3XoTBt9w4UCsfz1qxbn9vUvXYWQmBRrbcMmRw", + block_timestamp: "1723842975636475978", + block: { block_height: 125924275 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.776312312095e20, + args: '{"id": 32, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 4.086469895555e20 }, + }, + { + id: "7484169136", + receipt_id: "3qBZf6dLp7kMNyph8WyTUfTs4duauA4iayPg4mwddTWM", + predecessor_account_id: "treasurytestuserledger.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5Jk9D2mbfTRXBpZ2Spg4vLE5mGSgHcFwbSNrTz6SbjVr", + block_height: 125924290, + block_timestamp: 1723842995239769900, + }, + receipt_outcome: { + gas_burnt: 3776312312095.0, + tokens_burnt: 3.776312312095e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "Ev4W8K1RcANBq2BQreV8a79z6vhz2jAcuwUMf3KCZiJi", + included_in_block_hash: "5Vk4VgSdcshQSjFe2bDuBZYT5mEcxBGtXf2W1vTzHcbQ", + block_timestamp: "1723842993909855765", + block: { block_height: 125924289 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.776312312095e20, + args: '{"id": 32, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 4.086469895555e20 }, + }, + { + id: "7484181706", + receipt_id: "KMwTc44j7Suy1YSX24ByUTLMwTSn6ZJgrjkxZdGJ6np", + predecessor_account_id: "treasurytestuserledger.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5FYykJycowoRU5rDszJaNRWTzJRArWm6mSQLHGK6yYAC", + block_height: 125924307, + block_timestamp: 1723843017586150000, + }, + receipt_outcome: { + gas_burnt: 3721024488391.0, + tokens_burnt: 3.721024488391e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "EoRzQdG3gtkwux9AV6dJpFYYsvv7Vg2mLELvDmmSh2D", + included_in_block_hash: "8srWqCsrjg2t9M3hYEy3mcJw3fzbyB7dsbQxNJ5o3q6P", + block_timestamp: "1723843016292768740", + block: { block_height: 125924306 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.721024488391e20, + args: '{"id": 32, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 4.0311820718509995e20 }, + }, + { + id: "7484208443", + receipt_id: "BkGSbAEHFbGeji7XHEURgtt8wLQTJZXFsStCzRMHMzmf", + predecessor_account_id: "treasurytestuserledger.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8UqYzynpQU6AX5kwBQhbuzG8ZPjLKcfJY8RwLAEEtoNR", + block_height: 125924342, + block_timestamp: 1723843063705311200, + }, + receipt_outcome: { + gas_burnt: 3776673960691.0, + tokens_burnt: 3.7766739606909996e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FMkVBoYaaMwYnpTZFWRBWGGmjc6CwXLsHSUM1hcdqr1g", + included_in_block_hash: "3rzzj3kL5oDymiMCq4SzgQ4Bjaq5Hebx38TLVRBYajZc", + block_timestamp: "1723843062421383630", + block: { block_height: 125924341 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.7766739606909996e20, + args: '{"id": 34, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.681071125544999e20 }, + }, + { + id: "7484209169", + receipt_id: "B8JJ3X3mTMUWyAcNKii3rJqDbz4s46qwfJCeTciNEV6E", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6UTDxjJPApmYJfeBJcevxKmBJabQykPb65gBXGw6NFVg", + block_height: 125924343, + block_timestamp: 1723843065080355300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "FMkVBoYaaMwYnpTZFWRBWGGmjc6CwXLsHSUM1hcdqr1g", + included_in_block_hash: "3rzzj3kL5oDymiMCq4SzgQ4Bjaq5Hebx38TLVRBYajZc", + block_timestamp: "1723843062421383630", + block: { block_height: 125924341 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 4e19, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.681071125544999e20 }, + }, + { + id: "7484209173", + receipt_id: "2joYJJXJz9qZr9FdUBGafh5eSYVCX3RgxY4a8CLiUack", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6UTDxjJPApmYJfeBJcevxKmBJabQykPb65gBXGw6NFVg", + block_height: 125924343, + block_timestamp: 1723843065080355300, + }, + receipt_outcome: { + gas_burnt: 3147874456394.0, + tokens_burnt: 3.147874456394e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FMkVBoYaaMwYnpTZFWRBWGGmjc6CwXLsHSUM1hcdqr1g", + included_in_block_hash: "3rzzj3kL5oDymiMCq4SzgQ4Bjaq5Hebx38TLVRBYajZc", + block_timestamp: "1723843062421383630", + block: { block_height: 125924341 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.147874456394e20, + args: '{"proposal_id": 34}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.681071125544999e20 }, + }, + { + id: "7484210109", + receipt_id: "CiF2PTxYY2mF5C51XaFXFfXxj3WPK7DTxHkjvuJWKokm", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8jUymerLrTuUprFQZTpzAR1aoqEbRUPA2fStnm2rYTUN", + block_height: 125924345, + block_timestamp: 1723843067704143600, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "FMkVBoYaaMwYnpTZFWRBWGGmjc6CwXLsHSUM1hcdqr1g", + included_in_block_hash: "3rzzj3kL5oDymiMCq4SzgQ4Bjaq5Hebx38TLVRBYajZc", + block_timestamp: "1723843062421383630", + block: { block_height: 125924341 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.681071125544999e20 }, + }, + { + id: "7484530693", + receipt_id: "4bcoKcnDkUtX1ChqV8wDxn7Zc8URD1JKLxTL4ScDoGrR", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7rPxLYi3v2tVmnRmgRSTMYwDYkKXvx3FKj1iqoxNLkqi", + block_height: 125925117, + block_timestamp: 1723844026866560800, + }, + receipt_outcome: { + gas_burnt: 2923826764294.0, + tokens_burnt: 2.923826764294e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HHgkarS1ChWe1f7xyhJofvMe8Lf4T2AEPshatdRuBSbt", + included_in_block_hash: "BGadrgqqpDgKPUQb3NmZQD5iAoZHzE22rDuz2mYCUJA6", + block_timestamp: "1723844025577210009", + block: { block_height: 125925116 }, + receipt_conversion_tokens_burnt: "33056621348000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.923826764294e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1124000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Reza DevRel Contributor Report 5 August - 14 August\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Following an initial alignment with @gagdiez.near, and as the winner of the AI track on EthGlobal Brussels, I am looking forward to contribute to the AI docs as well as AI derived tooling such as the near-py package.\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":181}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.254392977774e20 }, + }, + { + id: "7484971691", + receipt_id: "CVqqvSBNMRjAj22UShDBrpmRLvp1DKxiJdvqLH4EAENJ", + predecessor_account_id: + "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EkzYcxXmoYajbkWCXUPSgCs9kGYqBQoDgVYxiGnsU4Rw", + block_height: 125926240, + block_timestamp: 1723845409600967700, + }, + receipt_outcome: { + gas_burnt: 2941731054806.0, + tokens_burnt: 2.9417310548060003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "45nGYX7DBVbZ3xo7gR7UaWUNgFp5EqjtfzFgD8GzuWdT", + included_in_block_hash: "CF5zvoRKzP3jnApGc7LEftDMuLfNisiVRv5pJ4xiXJBM", + block_timestamp: "1723845408345856792", + block: { block_height: 125926239 }, + receipt_conversion_tokens_burnt: "32703761857000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.9417310548060003e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000000000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":175}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.268768673376e20 }, + }, + { + id: "7485133875", + receipt_id: "5EKhuGAEWaR2MPyLfBtFh7mSgLEnhLFqxZA6z4cXVSGn", + predecessor_account_id: "frol.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GeSnR7Znf4a9YBBweKBXq8XnaqZVCC5xfVy4SX5BB5wt", + block_height: 125926597, + block_timestamp: 1723845848192777200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GAwegUMjyK3ghSsd5c12jjErp9fp6Gq32AT5aLYFL81N", + included_in_block_hash: "7mGRcYcXKycqsSMp9zhAocY8wkdt3fbxY3ntPN7dP36S", + block_timestamp: "1723845847022719659", + block: { block_height: 125926596 }, + receipt_conversion_tokens_burnt: "22318256250000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 4.999999999999999e24, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 4.999999999999999e24 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.46365125e19 }, + }, + { + id: "7485240935", + receipt_id: "Hvg7EY4GtfRC5N3S7oazdAAB2x5VgckoNLzF18FH7fWT", + predecessor_account_id: + "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6FFrYyxEJG85432LbhBk9eAFaYeoB8aiJAPBdzWMbQSC", + block_height: 125926856, + block_timestamp: 1723846176336628000, + }, + receipt_outcome: { + gas_burnt: 2884553030950.0, + tokens_burnt: 2.88455303095e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "ANqJYb5qTsVeNVRmqa2iYKV3mHzvpiZ272dQfiUdSg4k", + included_in_block_hash: "H1hTp9gKf852cxXcGjbhYaz8eS4M88ehm3bnK7gtvBgi", + block_timestamp: "1723846175280631436", + block: { block_height: 125926855 }, + receipt_conversion_tokens_burnt: "32713298600000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.88455303095e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000", "token_id": "usdt.tether-token.near", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":177}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.21168601695e20 }, + }, + { + id: "7485629164", + receipt_id: "D4ugVazzoaepGKpaMr2psrJNFX2XWn4gnYuzz8HkZsVd", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FSBKWNmwk7DnoxbFF47BdCdJ8iYueoovpFMJ4KgCk255", + block_height: 125927880, + block_timestamp: 1723847433527133000, + }, + receipt_outcome: { + gas_burnt: 4639679648688.0, + tokens_burnt: 4.639679648688e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4ZhqN5PvBwy3gEXDGHj2MXkHEqGyzrt32kF3XQLxjL1h", + included_in_block_hash: "9Qw2CYiDj7tz8sGNhivZ8AJ1y1PUMwZU3eY8kuAuqFCe", + block_timestamp: "1723847432245640362", + block: { block_height: 125927879 }, + receipt_conversion_tokens_burnt: "49860362514000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.639679648688e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["policy:AddProposal", "upgrade_remote:AddProposal", "vote:AddProposal", "add_bounty:AddProposal", "config:AddProposal", "config:Finalize", "call:AddProposal", "bounty_done:AddProposal", "set_vote_token:AddProposal", "transfer:AddProposal", "upgrade_self:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "theori.near", "test03.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.138283273828e20 }, + }, + { + id: "7485630276", + receipt_id: "H8UnVNtxuEu2Pae9TjqwkxZPcA7Ns3yuHjog43bTGf5Z", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Fmu3JyHK7SbyPRE53HPMHKX7UEBJDdR9WASUNxQsrUjS", + block_height: 125927884, + block_timestamp: 1723847438882262300, + }, + receipt_outcome: { + gas_burnt: 5005488586043.0, + tokens_burnt: 5.005488586043e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "49yhLXvkKaFPQpKJwwYet2vX3KwHxjTidutuBNTBZFDx", + included_in_block_hash: "8nsZEvbXFPoacXQkJ2CG9d9FtHiKqKJtHUMR3CQGn1Qx", + block_timestamp: "1723847437528081767", + block: { block_height: 125927883 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 5.005488586043e20, + args: '{"id": 43, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.538828732003e20 }, + }, + { + id: "7485630638", + receipt_id: "6vuE9hPDnffKYGuuSAr3DHwjN3i1azQj3njRj1kBH4x3", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7sFv9aP2QhJgFwY5D59YrmQM9J2nxk9ehRTh3SeDJzne", + block_height: 125927885, + block_timestamp: 1723847440155520800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "49yhLXvkKaFPQpKJwwYet2vX3KwHxjTidutuBNTBZFDx", + included_in_block_hash: "8nsZEvbXFPoacXQkJ2CG9d9FtHiKqKJtHUMR3CQGn1Qx", + block_timestamp: "1723847437528081767", + block: { block_height: 125927883 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.538828732003e20 }, + }, + { + id: "7510568292", + receipt_id: "C5fv8gbChSuq1dHCS5sXgb4xt19zrwu5hiYJ1x9u7ZjA", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EejDVGZSG3CwDoQ22hHyK1JKyKhiNv7b4M3cUMYZY1EC", + block_height: 125990849, + block_timestamp: 1723926376218184000, + }, + receipt_outcome: { + gas_burnt: 2886352347647.0, + tokens_burnt: 2.886352347647e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3jYTLZ2R9gSUfv8mZMFfPYmfhdfTxhPyKiJfgUCwA6LG", + included_in_block_hash: "44piMKN7vpYCfndfN2pZtu6DsYrm5tgvL4QMRT4joex7", + block_timestamp: "1723926374889104786", + block: { block_height: 125990848 }, + receipt_conversion_tokens_burnt: "31816844758000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.886352347647e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "100000000000000000000000", "token_id": "", "receiver_id": "petersalomonsen.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.204520795227e20 }, + }, + { + id: "7510589815", + receipt_id: "wgCCFo5gFLv8JetUZPcEZ3ZA59dqmriZjHAgNnRbn8f", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "CtfQYevaQtA53JZKFRxAxfza77LUCStcryYh6ggskS5T", + block_height: 125990926, + block_timestamp: 1723926473814488000, + }, + receipt_outcome: { + gas_burnt: 3703670259004.0, + tokens_burnt: 3.703670259004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "6P3E177xPGDsSwjXvXNQLsaTdqrHAVdBDYu3RpVELbQW", + included_in_block_hash: "5d4Z14yFerBmcsu7T9rd116Qe9rxBW9hsKRkVfdkgPHY", + block_timestamp: "1723926472668753147", + block: { block_height: 125990925 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.703670259004e20, + args: '{"id": 44, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.590621854671e20 }, + }, + { + id: "7510590374", + receipt_id: "5oa48VZt8gdNL4wsxXoHRQbnP51uVpGLbM3Qbt2Rta52", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6dPCJLKqKRCGSFQVcP3qtvnEXneAY4o46pWPpeDHSvsx", + block_height: 125990927, + block_timestamp: 1723926475192918800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "6P3E177xPGDsSwjXvXNQLsaTdqrHAVdBDYu3RpVELbQW", + included_in_block_hash: "5d4Z14yFerBmcsu7T9rd116Qe9rxBW9hsKRkVfdkgPHY", + block_timestamp: "1723926472668753147", + block: { block_height: 125990925 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.590621854671e20 }, + }, + { + id: "7510590377", + receipt_id: "ETTMn8HVPg26hF3bVzFxRKAnvFe1bKZszjSYz5HnqdYo", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6dPCJLKqKRCGSFQVcP3qtvnEXneAY4o46pWPpeDHSvsx", + block_height: 125990927, + block_timestamp: 1723926475192918800, + }, + receipt_outcome: { + gas_burnt: 3130428887207.0, + tokens_burnt: 3.130428887207e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "6P3E177xPGDsSwjXvXNQLsaTdqrHAVdBDYu3RpVELbQW", + included_in_block_hash: "5d4Z14yFerBmcsu7T9rd116Qe9rxBW9hsKRkVfdkgPHY", + block_timestamp: "1723926472668753147", + block: { block_height: 125990925 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.130428887207e20, + args: '{"proposal_id": 44}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.590621854671e20 }, + }, + { + id: "7510590958", + receipt_id: "8B5dV8W2rAP7Mfg4jMWuXkCdL84ZFoRKDfgT8X2gqn3Z", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "46qPkZ4tx8WhrNtRDdJaZd79jLZv5wBMniqDp7hZqeVx", + block_height: 125990929, + block_timestamp: 1723926477285038800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "6P3E177xPGDsSwjXvXNQLsaTdqrHAVdBDYu3RpVELbQW", + included_in_block_hash: "5d4Z14yFerBmcsu7T9rd116Qe9rxBW9hsKRkVfdkgPHY", + block_timestamp: "1723926472668753147", + block: { block_height: 125990925 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.590621854671e20 }, + }, + { + id: "7574759307", + receipt_id: "3FG7YJg5H3X4Y64UDcyct8Kx6xqfp75LX69KciGR1Jnp", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6n9VLiGSdT15nXQZNKAyZp4torRabmWg2uddGfCA4FhH", + block_height: 126162049, + block_timestamp: 1724141015882304500, + }, + receipt_outcome: { + gas_burnt: 4479576383719.0, + tokens_burnt: 4.479576383719e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DsYcxqxRFUn7uQ3S6vyPgq1obbVYh7cocYwGZ51w1xdU", + included_in_block_hash: "AzGhSG23pntTq3ytNUarqNLyAQCVruh4WVCRBYFMZSq6", + block_timestamp: "1724141014751054659", + block: { block_height: 126162048 }, + receipt_conversion_tokens_burnt: "48391704092000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.479576383719e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["config:Finalize", "transfer:AddProposal", "call:AddProposal"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["theori.near", "megha19.near", "petersalomonsen.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.963493424638999e20 }, + }, + { + id: "7574886009", + receipt_id: "EUn9WQXX4kgHfbV2sxekGYyC6vpHoziN9BHqCw6Ucr9q", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "auCT2ZVeMJxC4nMbg5Ze6rKy9VR4fREUcPGxn5p5sZk", + block_height: 126162263, + block_timestamp: 1724141294995475000, + }, + receipt_outcome: { + gas_burnt: 4786680982805.0, + tokens_burnt: 4.7866809828050004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FgygWGF28redA8UeHaYS5Khmsqmy4txSN4LwNhjNB7Nc", + included_in_block_hash: "4aw3pQeGXeru9q3g9SuMHCj6tedZZnodEAaLZHMjZiP6", + block_timestamp: "1724141293729809229", + block: { block_height: 126162262 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.7866809828050004e20, + args: '{"id": 45, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.3200211287649996e20 }, + }, + { + id: "7574886916", + receipt_id: "7xTAgjtAGWRa9uiX5StN9Ui2UpgvZuf2Na8Kk7xGyh1q", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3jkrDXvdj4BsqaeCpAn7mNwCW1Lhrw5maGDp1GvsLgKE", + block_height: 126162264, + block_timestamp: 1724141296370884900, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "FgygWGF28redA8UeHaYS5Khmsqmy4txSN4LwNhjNB7Nc", + included_in_block_hash: "4aw3pQeGXeru9q3g9SuMHCj6tedZZnodEAaLZHMjZiP6", + block_timestamp: "1724141293729809229", + block: { block_height: 126162262 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.3200211287649996e20 }, + }, + { + id: "7575123408", + receipt_id: "2wmh2VN4ow53iY11c8JqYXN23JhyAgBTVP2PyGtyhVZG", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4Bs47p9ZFN54QUcDQoBrBUvuor9JAV3FH1xs5hRLbYpp", + block_height: 126162833, + block_timestamp: 1724142008817085000, + }, + receipt_outcome: { + gas_burnt: 4542982132730.0, + tokens_burnt: 4.54298213273e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DqdYV6cBH5PxD7yv7E3mvK7G21VujCLENM6fLtNV8rsz", + included_in_block_hash: "Fbd8EpvMJWDfDRvHWxENW2y3bZuGjkXFQPuaXXEEdGFG", + block_timestamp: "1724142007538683822", + block: { block_height: 126162832 }, + receipt_conversion_tokens_burnt: "48711184982500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.54298213273e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "petersalomonsen.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["theori.near", "megha19.near", "petersalomonsen.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.030093982555e20 }, + }, + { + id: "7575124464", + receipt_id: "3CVrR7wHL3Jdz8x2tgpqo1AigVsoacWfgcBPQQxABqQJ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ZXjnDbMXSrXNhwDTSjby8Z4Z8zVncV7G4SSiMVBPTrz", + block_height: 126162836, + block_timestamp: 1724142012876321500, + }, + receipt_outcome: { + gas_burnt: 4842850557935.0, + tokens_burnt: 4.842850557934999e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "8Qa4QRvmFNxkhe32HVKqja2LS5gQFfVrov7k7pwDCMF7", + included_in_block_hash: "85bUZv6obHpx2BuX7SqLXSyZvs7Dsd1fqs56gNEVTLsH", + block_timestamp: "1724142011457607270", + block: { block_height: 126162835 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.842850557934999e20, + args: '{"id": 46, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.376190703895e20 }, + }, + { + id: "7575125061", + receipt_id: "DiqFMTWkP2Ce1Me91Esi53shy4ZJbUX5DujxPsuWofD", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Cgm6X6DncRRxCmfCtFU3V2owhUgf7yQq4xDwZ7yJV6kZ", + block_height: 126162837, + block_timestamp: 1724142014389553400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "8Qa4QRvmFNxkhe32HVKqja2LS5gQFfVrov7k7pwDCMF7", + included_in_block_hash: "85bUZv6obHpx2BuX7SqLXSyZvs7Dsd1fqs56gNEVTLsH", + block_timestamp: "1724142011457607270", + block: { block_height: 126162835 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.376190703895e20 }, + }, + { + id: "7575134836", + receipt_id: "6YXk2koJaqEW6x9CkJmtnbEcT9K4zeCYhPMSm5qrCLrf", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5o3XhEk2F72maWyycE18wVWFzv4zf1JBSvpXNhMFtWgh", + block_height: 126162869, + block_timestamp: 1724142054563697400, + }, + receipt_outcome: { + gas_burnt: 4500943320914.0, + tokens_burnt: 4.500943320914e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EXG8AGF4wt1rAAP51E9E8wJrAtvdSY4QFWtP5bTnerCq", + included_in_block_hash: "HUvjZNRSeqQXmcuKsKGwpjdZxhwcCSCHPwbP8X1NV8wX", + block_timestamp: "1724142053490009580", + block: { block_height: 126162868 }, + receipt_conversion_tokens_burnt: "48854236127500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.500943320914e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["theori.near", "megha19.near", "petersalomonsen.near", "treasurytestuserledger.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.989485682189e20 }, + }, + { + id: "7575135793", + receipt_id: "nPCB6dCpwZDzxPYTH5eJR6GLNoBxRtgRPjN5x6Lrir2", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4JVM9yPoS4V8NFGwFFmUnzAN7dK2jJvCzKquEbEcJDVb", + block_height: 126162873, + block_timestamp: 1724142059503666200, + }, + receipt_outcome: { + gas_burnt: 4782373855031.0, + tokens_burnt: 4.782373855031e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3zMK4nssCHbU4NeuStQycujXuhAWRc3zWpEwE2yaWn9q", + included_in_block_hash: "Eifa6ypLtu2DcurVjAP2j7mrCvbD48SsujEz5DoLAcFw", + block_timestamp: "1724142058195885744", + block: { block_height: 126162872 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.782373855031e20, + args: '{"id": 47, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.315714000991e20 }, + }, + { + id: "7575136362", + receipt_id: "2tnV3DXHQ6xqcZ1P55cTerEKATh6nipGjtkMFiE4tWKz", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "G6rfJw8MeF5DX2BQYsYpnPUC22yV5UGZQBxiRMNmgNNj", + block_height: 126162874, + block_timestamp: 1724142060794938600, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "3zMK4nssCHbU4NeuStQycujXuhAWRc3zWpEwE2yaWn9q", + included_in_block_hash: "Eifa6ypLtu2DcurVjAP2j7mrCvbD48SsujEz5DoLAcFw", + block_timestamp: "1724142058195885744", + block: { block_height: 126162872 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.315714000991e20 }, + }, + { + id: "7575245561", + receipt_id: "F9AE2ZtGgDz8CKqEtNJUNWKUxVa5PbNQT3wV96fmnJSF", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AvSAEp4ASnZPE3985XBrESs6n9ESJS56dzKew3T5otj6", + block_height: 126163109, + block_timestamp: 1724142354199186200, + }, + receipt_outcome: { + gas_burnt: 2835484820665.0, + tokens_burnt: 2.835484820665e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "64TT27cmT3eE7N4uPadiAjZDL5M2gyXZpg7k2yZF4roB", + included_in_block_hash: "5un38DjC4Fvgm8CDd6YaT6TvwCFtwiL7Yas1mpYFE1Xn", + block_timestamp: "1724142353167500736", + block: { block_height: 126163108 }, + receipt_conversion_tokens_burnt: "32927875317500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.835484820665e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "icespice.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":175}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.16476357384e20 }, + }, + { + id: "7585429420", + receipt_id: "EC1n7FrzxBodyo9uaFcXBqZJsB3joXin5yLG6PewJ3os", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HcvcTGDtcQhJ1Ya1BVvdCtH6gw8YcLrpHvs7iCFRDyWZ", + block_height: 126184653, + block_timestamp: 1724169228353562600, + }, + receipt_outcome: { + gas_burnt: 2873183702577.0, + tokens_burnt: 2.873183702577e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Fi1VfcYMTesQuaGcrRjn9iVuvPU19CoBxNXAE34oLggq", + included_in_block_hash: "ETc8B2T13qwZuw4ksAKkepY9B9P2D8hMFBDCmcY25TNn", + block_timestamp: "1724169227076816473", + block: { block_height: 126184652 }, + receipt_conversion_tokens_burnt: "32136325648500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.873183702577e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "megha19.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing USDC transfer\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing USDC transfer\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.194546959062e20 }, + }, + { + id: "7585450898", + receipt_id: "GcJxwTXbRfA2MHmjbw5AZUxzRsNDwmNudXzUEp7SSWch", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2WGCPL2SRvhht9W3KAwRuH2f2gZvx9TgS1NtZNaFujC4", + block_height: 126184688, + block_timestamp: 1724169270509387500, + }, + receipt_outcome: { + gas_burnt: 3895539154040.0, + tokens_burnt: 3.89553915404e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "kx9XeFtRLf7GDHc9J5bU95248RiSdNJeAw27vnhb8Hv", + included_in_block_hash: "CnCGC5Yk1ZjsjNMEK1ydQ5w7fweQnyc6fyY8v3JuPqtL", + block_timestamp: "1724169269493670895", + block: { block_height: 126184687 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.89553915404e20, + args: '{"id": 49, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0337937847729e21 }, + }, + { + id: "7585451717", + receipt_id: "9up6iunGoc2Tagibvkw4mJBcaRJmx8GVSgkHxrQkxBDf", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "1hiExH1V9FJDY8Ef2Quj5Hj93UE3XsxZegYZmGKGqQ8", + block_height: 126184689, + block_timestamp: 1724169271809375000, + }, + receipt_outcome: { + gas_burnt: 2759153254136.0, + tokens_burnt: 2.759153254136e20, + executor_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + status: true, + }, + transaction_hash: "kx9XeFtRLf7GDHc9J5bU95248RiSdNJeAw27vnhb8Hv", + included_in_block_hash: "CnCGC5Yk1ZjsjNMEK1ydQ5w7fweQnyc6fyY8v3JuPqtL", + block_timestamp: "1724169269493670895", + block: { block_height: 126184687 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer", + deposit: 1.0, + fee: 2.759153254136e20, + args: '{"memo": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing USDC transfer\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing USDC transfer\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null}", "amount": "10000", "receiver_id": "megha19.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0337937847729e21 }, + }, + { + id: "7585451722", + receipt_id: "CVAyHTGzXnkh7Aj5qZksJj3abdCVJxRDiZYPv8WuQygj", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "1hiExH1V9FJDY8Ef2Quj5Hj93UE3XsxZegYZmGKGqQ8", + block_height: 126184689, + block_timestamp: 1724169271809375000, + }, + receipt_outcome: { + gas_burnt: 3149905293593.0, + tokens_burnt: 3.149905293593e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "kx9XeFtRLf7GDHc9J5bU95248RiSdNJeAw27vnhb8Hv", + included_in_block_hash: "CnCGC5Yk1ZjsjNMEK1ydQ5w7fweQnyc6fyY8v3JuPqtL", + block_timestamp: "1724169269493670895", + block: { block_height: 126184687 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.149905293593e20, + args: '{"proposal_id": 49}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0337937847729e21 }, + }, + { + id: "7585453075", + receipt_id: "9dqSoLuhwd6Hgf2cYiAEDyLt2XiVDSxeVe6XxyZDEHBn", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ngR5s9ohJu84WQJt2Gt7QdscnphUyxq2Mevdj2JSfRa", + block_height: 126184691, + block_timestamp: 1724169274213154800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "kx9XeFtRLf7GDHc9J5bU95248RiSdNJeAw27vnhb8Hv", + included_in_block_hash: "CnCGC5Yk1ZjsjNMEK1ydQ5w7fweQnyc6fyY8v3JuPqtL", + block_timestamp: "1724169269493670895", + block: { block_height: 126184687 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0337937847729e21 }, + }, + { + id: "7587039180", + receipt_id: "8x1K1tpgdkTCrcMrowWsBFyVzBVGpyg9LDqWtStYFFaA", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "75cWETcp8sHHdgwLsZ8qkFAcH2cB1hnETgLqmeLhyXrB", + block_height: 126188234, + block_timestamp: 1724173717179399000, + }, + receipt_outcome: { + gas_burnt: 4566614243149.0, + tokens_burnt: 4.566614243149e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "QCd4EHfwZcUF7zdiragehR6AsTYVFmxKtHxj7Nc5Gb7", + included_in_block_hash: "GbjC6oYsQ5LtRBuHSQw9mCq9KBsjKoxi4ekBuCeLcmmQ", + block_timestamp: "1724173716026316103", + block: { block_height: 126188233 }, + receipt_conversion_tokens_burnt: "48920993328500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.566614243149e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "theori.near", "test05.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.055824176434e20 }, + }, + { + id: "7587042204", + receipt_id: "BJDKBwU4v9g7AugRChF16YbfRueo9QWvC1eWPCbuE1Bj", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5uLqJeLr32xJEAU3jdx88dxYwSf6z3ubbiPqVCfnaYgP", + block_height: 126188238, + block_timestamp: 1724173721507139000, + }, + receipt_outcome: { + gas_burnt: 4877065363985.0, + tokens_burnt: 4.877065363985001e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2bPTDShAe9ipyDkzyYqyUeMN1HJCsgA8qwWsra6Jm1wv", + included_in_block_hash: "AvY87wBzKERRWm3AuC3xRqUpEbsR2qdZkr77v8zCiyxr", + block_timestamp: "1724173720441232536", + block: { block_height: 126188237 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.877065363985001e20, + args: '{"id": 50, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.410405509945e20 }, + }, + { + id: "7587042988", + receipt_id: "6HfD2nGoqng3Gm5KPMvF5HKX8h5B6aimyUpSqcx9gEaN", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "F88zGCfy7YsHFwYD4YHR44SGbAief2QfPgtw2SvphVEF", + block_height: 126188239, + block_timestamp: 1724173722748210200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "2bPTDShAe9ipyDkzyYqyUeMN1HJCsgA8qwWsra6Jm1wv", + included_in_block_hash: "AvY87wBzKERRWm3AuC3xRqUpEbsR2qdZkr77v8zCiyxr", + block_timestamp: "1724173720441232536", + block: { block_height: 126188237 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.410405509945e20 }, + }, + { + id: "7615850692", + receipt_id: "5B3psqGR6LE5xSn1EQo3dKwjW5DQVXaJxv5NFLjj2KnM", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "56Ys6zFV35XdZJHXEWo94TAim8mUv8Lk1cN5TriFHJq", + block_height: 126255041, + block_timestamp: 1724255553223000600, + }, + receipt_outcome: { + gas_burnt: 3846945248641.0, + tokens_burnt: 3.846945248641e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "12kuv7USKNYKWQQ4F7iWzENsmzNBzcRUSka1GsnS1VUS", + included_in_block_hash: "7UGnzwMowkx4uDJ7zSxNkmXjZp8Rs1SCEMr6cepxQB8K", + block_timestamp: "1724255552048839803", + block: { block_height: 126255040 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.846945248641e20, + args: '{"id": 42, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.618196685917e20 }, + }, + { + id: "7615851058", + receipt_id: "34LcYfmL7TiGUR5Y9wqYpcDuxKW61KngjZPksDgw4MC1", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "usdt.tether-token.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7k9ZNmcdkQgThqRqgWLZ4KUnTM9CTKiXxB5NnCt4nFAi", + block_height: 126255042, + block_timestamp: 1724255554344000500, + }, + receipt_outcome: { + gas_burnt: 1976645767973.0, + tokens_burnt: 1.976645767973e20, + executor_account_id: "usdt.tether-token.near", + status: false, + }, + transaction_hash: "12kuv7USKNYKWQQ4F7iWzENsmzNBzcRUSka1GsnS1VUS", + included_in_block_hash: "7UGnzwMowkx4uDJ7zSxNkmXjZp8Rs1SCEMr6cepxQB8K", + block_timestamp: "1724255552048839803", + block: { block_height: 126255040 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer", + deposit: 1.0, + fee: 1.976645767973e20, + args: '{"memo": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":177}", "amount": "1000", "receiver_id": "theori.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.618196685917e20 }, + }, + { + id: "7615851061", + receipt_id: "GDGZYi4h1gY9t1RjmdaGAR3u98gejnjnN6N5m6MHyiek", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7k9ZNmcdkQgThqRqgWLZ4KUnTM9CTKiXxB5NnCt4nFAi", + block_height: 126255042, + block_timestamp: 1724255554344000500, + }, + receipt_outcome: { + gas_burnt: 2484448085843.0, + tokens_burnt: 2.4844480858429997e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "12kuv7USKNYKWQQ4F7iWzENsmzNBzcRUSka1GsnS1VUS", + included_in_block_hash: "7UGnzwMowkx4uDJ7zSxNkmXjZp8Rs1SCEMr6cepxQB8K", + block_timestamp: "1724255552048839803", + block: { block_height: 126255040 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 2.4844480858429997e20, + args: '{"proposal_id": 42}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.618196685917e20 }, + }, + { + id: "7615851153", + receipt_id: "7Sf7pJSSzE1fHdrNYNRB1WPXSqrTfWokxXQNqENXQ9ex", + predecessor_account_id: "system", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ANF1HqPeCUwkF58K7mF63HkwNXAGWT3piGRDivReqcSi", + block_height: 126255043, + block_timestamp: 1724255555384638700, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 0.0, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "12kuv7USKNYKWQQ4F7iWzENsmzNBzcRUSka1GsnS1VUS", + included_in_block_hash: "7UGnzwMowkx4uDJ7zSxNkmXjZp8Rs1SCEMr6cepxQB8K", + block_timestamp: "1724255552048839803", + block: { block_height: 126255040 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { action: "TRANSFER", method: null, deposit: 1.0, fee: 0.0, args: null }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.618196685917e20 }, + }, + { + id: "7615984198", + receipt_id: "H4v91KKCD72N74gFFwQYL9WEhpaBqNfQWoP4DiWayFuN", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6Q7bTDrtGnedZUQuC27GQUwsw4bT33xSxrh5r6Nz3rps", + block_height: 126255400, + block_timestamp: 1724255979425790500, + }, + receipt_outcome: { + gas_burnt: 7246126380660.0, + tokens_burnt: 7.24612638066e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3U2Rrw5Vms8Sv7C6sRexu5Fqb2Y68KWfE5ByJMpKfvbd", + included_in_block_hash: "25tjpUnA61SPCGfXczpCNFqF4NysMXcZR1h8yte3sSxL", + block_timestamp: "1724255978069974254", + block: { block_height: 126255399 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 7.24612638066e20, + args: '{"id": 41, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.1731183967905e21 }, + }, + { + id: "7615984739", + receipt_id: "4RLoSf19tdqmVnmQjcPRmNekdbTeXA9kncqJkVT9h4ce", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: + "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5N8E5zBfUNnY76jt9j8j22zmEPWa9du9TmXKSS5SgDzE", + block_height: 126255401, + block_timestamp: 1724255980516023800, + }, + receipt_outcome: { + gas_burnt: 4174947687500.0, + tokens_burnt: 4.1749476875e20, + executor_account_id: + "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", + status: true, + }, + transaction_hash: "3U2Rrw5Vms8Sv7C6sRexu5Fqb2Y68KWfE5ByJMpKfvbd", + included_in_block_hash: "25tjpUnA61SPCGfXczpCNFqF4NysMXcZR1h8yte3sSxL", + block_timestamp: "1724255978069974254", + block: { block_height: 126255399 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 4.1749476875e20, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.1731183967905e21 }, + }, + { + id: "7617485437", + receipt_id: "DdtPFaieXd9jKKKZq1sRtQZ9ozTGujaEFkyaHXHETtC4", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3HD9VSEjjvwZBEqSKUzxeqWLMMPyVSi5yF9wvSR46u8i", + block_height: 126260371, + block_timestamp: 1724262010260644600, + }, + receipt_outcome: { + gas_burnt: 3883400527357.0, + tokens_burnt: 3.8834005273570004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AZs8VyCMiDyoykW3yxhhkMFhgz9sk8jsHeaQXkTanEcT", + included_in_block_hash: "4aVxHJTotKuWnahPUBh2siwZMZ5gdqEDeLG3PQ94Fteg", + block_timestamp: "1724262008978672170", + block: { block_height: 126260370 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.8834005273570004e20, + args: '{"id": 48, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0374185050345e21 }, + }, + { + id: "7617485838", + receipt_id: "9WBqhfhj6xYwo1bwTBCVsHznpWQPQrgryMLAFPQftC7G", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5qbqqLi1xabH4PXbA8upz9ERwLnnEJzBbfPmBBJN9Q9J", + block_height: 126260372, + block_timestamp: 1724262011671597600, + }, + receipt_outcome: { + gas_burnt: 2825616744504.0, + tokens_burnt: 2.825616744504e20, + executor_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + status: true, + }, + transaction_hash: "AZs8VyCMiDyoykW3yxhhkMFhgz9sk8jsHeaQXkTanEcT", + included_in_block_hash: "4aVxHJTotKuWnahPUBh2siwZMZ5gdqEDeLG3PQ94Fteg", + block_timestamp: "1724262008978672170", + block: { block_height: 126260370 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer", + deposit: 1.0, + fee: 2.825616744504e20, + args: '{"memo": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":175}", "amount": "1000000", "receiver_id": "icespice.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0374185050345e21 }, + }, + { + id: "7617485839", + receipt_id: "DberKufnDuL7ZwWtvYvVYkjrGvjzJyBT7qaJ7c8QyTGJ", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5qbqqLi1xabH4PXbA8upz9ERwLnnEJzBbfPmBBJN9Q9J", + block_height: 126260372, + block_timestamp: 1724262011671597600, + }, + receipt_outcome: { + gas_burnt: 3131827632524.0, + tokens_burnt: 3.131827632524e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AZs8VyCMiDyoykW3yxhhkMFhgz9sk8jsHeaQXkTanEcT", + included_in_block_hash: "4aVxHJTotKuWnahPUBh2siwZMZ5gdqEDeLG3PQ94Fteg", + block_timestamp: "1724262008978672170", + block: { block_height: 126260370 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.131827632524e20, + args: '{"proposal_id": 48}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0374185050345e21 }, + }, + { + id: "7617486413", + receipt_id: "Dqvc1fdJpq1t2wjjti4bXbbxLaYcrZ8knXVHqwotK42c", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AeLy2uaZH82xVs5rULyGyPsRqR1RWpE32Sxtaaa9kfZ", + block_height: 126260374, + block_timestamp: 1724262014309452300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "AZs8VyCMiDyoykW3yxhhkMFhgz9sk8jsHeaQXkTanEcT", + included_in_block_hash: "4aVxHJTotKuWnahPUBh2siwZMZ5gdqEDeLG3PQ94Fteg", + block_timestamp: "1724262008978672170", + block: { block_height: 126260370 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0374185050345e21 }, + }, + { + id: "7617602874", + receipt_id: "2RzNMTbJcNpMPtoMb9yz3hDx3FggagLaT9aFqHk3pnVm", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "95Q568aw1ViAYESXDcniaYYqwk1NnUVX1MMWooZ1WcLx", + block_height: 126260770, + block_timestamp: 1724262504076901600, + }, + receipt_outcome: { + gas_burnt: 3788799254413.0, + tokens_burnt: 3.788799254413e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5pfHeQrmc4riRKyXRNMy8KCNjg96ESJdQSsh1o3M9vca", + included_in_block_hash: "7ApfUUGK79KHJwoi4enfcousfKyByKvigK5wc6MW2Q3p", + block_timestamp: "1724262502723441322", + block: { block_height: 126260769 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.788799254413e20, + args: '{"id": 40, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.759841223109e20 }, + }, + { + id: "7617603194", + receipt_id: "55eLbvSQSpMWyLDn7nzHc94v5kPsuCWhe9cAuNWFKLBx", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8grmHXwwAu9LDZfsFCFdkMrgGspjFPE2fSusSQj79ssz", + block_height: 126260771, + block_timestamp: 1724262505327371000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "5pfHeQrmc4riRKyXRNMy8KCNjg96ESJdQSsh1o3M9vca", + included_in_block_hash: "7ApfUUGK79KHJwoi4enfcousfKyByKvigK5wc6MW2Q3p", + block_timestamp: "1724262502723441322", + block: { block_height: 126260769 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1.124e18, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.759841223109e20 }, + }, + { + id: "7617603199", + receipt_id: "GnzjEe74ysiMU2AjmdXkhcbCRhd8FgW6gm45phDv4hHW", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8grmHXwwAu9LDZfsFCFdkMrgGspjFPE2fSusSQj79ssz", + block_height: 126260771, + block_timestamp: 1724262505327371000, + }, + receipt_outcome: { + gas_burnt: 3214519260236.0, + tokens_burnt: 3.214519260236e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5pfHeQrmc4riRKyXRNMy8KCNjg96ESJdQSsh1o3M9vca", + included_in_block_hash: "7ApfUUGK79KHJwoi4enfcousfKyByKvigK5wc6MW2Q3p", + block_timestamp: "1724262502723441322", + block: { block_height: 126260769 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.214519260236e20, + args: '{"proposal_id": 40}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.759841223109e20 }, + }, + { + id: "7617603604", + receipt_id: "AmKqpQkFwULUQbkMibpXSb5xFhqd7ksTHytTLa1erw4e", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BX7u6dNn3TnKUFEqreoGfkFx3NuNx3qWmtqx2bPS1zzw", + block_height: 126260773, + block_timestamp: 1724262508006039800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "5pfHeQrmc4riRKyXRNMy8KCNjg96ESJdQSsh1o3M9vca", + included_in_block_hash: "7ApfUUGK79KHJwoi4enfcousfKyByKvigK5wc6MW2Q3p", + block_timestamp: "1724262502723441322", + block: { block_height: 126260769 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.759841223109e20 }, + }, + { + id: "7617640819", + receipt_id: "9ddHPdNygSxRWzvZKD1cSNNQioM8PEnMAG8dRPKRshdW", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Arhd984TiqbM6x8RmL1sMbbqgxbfnNfmDo5UN9udKpVr", + block_height: 126260911, + block_timestamp: 1724262678733632800, + }, + receipt_outcome: { + gas_burnt: 2880816668054.0, + tokens_burnt: 2.880816668054e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3cpNKH3e5wc62RCPpaj1o8d3WQbugSScxFzNX22Zo2os", + included_in_block_hash: "9KvUVdyP8vWmz27R87RXf3cJYKcJASx6i1oUfmWyGEHR", + block_timestamp: "1724262677241589856", + block: { block_height: 126260910 }, + receipt_conversion_tokens_burnt: "32718066971500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.880816668054e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "50000000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"testttttt\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":175}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.2079973377689996e20 }, + }, + { + id: "7617687054", + receipt_id: "DxBkrR8A8doLU5o8z4fQ9LXDYShYVohYeukFzQxMesBn", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HZLiUdvmLgtPWHrF6RVN8cxhonec8KYKGqmFy8wpTK7a", + block_height: 126261091, + block_timestamp: 1724262893106075000, + }, + receipt_outcome: { + gas_burnt: 4492368041154.0, + tokens_burnt: 4.4923680411539997e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4X2WUdJkf9nTF4ame8okhFaCKVZgMPeSXCRC5YmWjxMs", + included_in_block_hash: "6ARk5X6ycYHSwZogDZ7qD6aD3kcJAhbzNVQcshNcX9Xr", + block_timestamp: "1724262891983630320", + block: { block_height: 126261090 }, + receipt_conversion_tokens_burnt: "48987750529500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.4923680411539997e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [19, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "test05.near", "treasurytestuserledger.near", "theori.near", "test03.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [18, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.982245546449e20 }, + }, + { + id: "7617687962", + receipt_id: "47CSCWQgFNWapTvfXFweUU1UVmAaiFGgiNN4HzPQtsWM", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GUEXKugWgmvoy1YGBDpKkVTUVkQAMGr6bnVuUnc9wDYM", + block_height: 126261095, + block_timestamp: 1724262897440180500, + }, + receipt_outcome: { + gas_burnt: 4849366596533.0, + tokens_burnt: 4.849366596533e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FT2J9SQnQvFA8zs4W3P8eUeXmXpVrQi59RK7KZMbtZkD", + included_in_block_hash: "DbYQeovX2C1e9asbSrKde5dryygkkj6mM24UJkR1eeRm", + block_timestamp: "1724262896406493208", + block: { block_height: 126261094 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.849366596533e20, + args: '{"id": 52, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.382706742493e20 }, + }, + { + id: "7617688306", + receipt_id: "5sfXmj3rbtZbcJhM9JcP3UuoUNaoNgE4iPukGxgia2NP", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2xdUsERyPbeLnzdw2rfpzuTyjSdCUdx2R7du1DMSLrqY", + block_height: 126261096, + block_timestamp: 1724262898571855400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "FT2J9SQnQvFA8zs4W3P8eUeXmXpVrQi59RK7KZMbtZkD", + included_in_block_hash: "DbYQeovX2C1e9asbSrKde5dryygkkj6mM24UJkR1eeRm", + block_timestamp: "1724262896406493208", + block: { block_height: 126261094 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.382706742493e20 }, + }, + { + id: "7637336515", + receipt_id: "GwDMVtN3V1hKyvbx1sWHHg5quiECqJp7EiUJpwPw3kea", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5WF2JsEWhmZd1jN3LS6F1BicdU76Rrwe7ZdEXesBobf", + block_height: 126317428, + block_timestamp: 1724331894401602600, + }, + receipt_outcome: { + gas_burnt: 4493057558193.0, + tokens_burnt: 4.4930575581929996e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3k1w4CNEQux2u5EMnibovo4415iX2jUP2wsq4tNnatV1", + included_in_block_hash: "FBkSoCJnAaYhNzFKr8Gtkzce5Pf7PBQQmRcc47yJSm5S", + block_timestamp: "1724331893100089750", + block: { block_height: 126317427 }, + receipt_conversion_tokens_burnt: "48816089155500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.4930575581929996e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "test03.near", "test05.near", "theori.near", "treasurytestuserledger.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.9812184497479995e20 }, + }, + { + id: "7637355482", + receipt_id: "57LabJe22PNqchp6DqVUbXQwTKGTf4Jb9fKinbyGgjXU", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "422VA95naztk7j9ZUPZnAdkU1AwCmgNnC4A3GPkgFHC5", + block_height: 126317482, + block_timestamp: 1724331965664388600, + }, + receipt_outcome: { + gas_burnt: 4853914881599.0, + tokens_burnt: 4.853914881599e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GLfqtJiJoS8AmhtcPMtqP7sAaofSuQY7CrbCFT29eNWv", + included_in_block_hash: "CwJSCWPv6o4GHqz7FJzy9nU184ANniHaTvAS8LWZ7cwv", + block_timestamp: "1724331964179984547", + block: { block_height: 126317481 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.853914881599e20, + args: '{"id": 53, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.387255027559e20 }, + }, + { + id: "7637356153", + receipt_id: "EJ16ZWL9ruhNAHpQaVwrwV5USwzutKVDT5Mqi11zj9Lt", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "41Stf98RR19A5jkiaNqJo1Ff9ZqMA2FGcCy8rCUeyTC5", + block_height: 126317483, + block_timestamp: 1724331966671866400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "GLfqtJiJoS8AmhtcPMtqP7sAaofSuQY7CrbCFT29eNWv", + included_in_block_hash: "CwJSCWPv6o4GHqz7FJzy9nU184ANniHaTvAS8LWZ7cwv", + block_timestamp: "1724331964179984547", + block: { block_height: 126317481 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.387255027559e20 }, + }, + { + id: "7665321948", + receipt_id: "5oVQkYA1M5WGrs62VshmPGQGNo6Rb5NirR3vP5KTCqHc", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EJ6ycxV7jNLzh2VN9WLZzu2zkGyL2tkD3VWqHfCcLjbU", + block_height: 126379146, + block_timestamp: 1724406874295778600, + }, + receipt_outcome: { + gas_burnt: 3782247694810.0, + tokens_burnt: 3.7822476948099996e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "ecuMqk5yMoArL7dX7KAnG3MxBvqdFY7wbMLS7RNnwn5", + included_in_block_hash: "BFDpUuQjakxHCsUszoc9kVufz1tU6P5nvgY54JafVwH2", + block_timestamp: "1724406872968221856", + block: { block_height: 126379145 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.7822476948099996e20, + args: '{"id": 51, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.664427857191e20 }, + }, + { + id: "7665322414", + receipt_id: "6dEabJipgHipj5tVidQfZdqZg86obkSCrb2CS7cVuE9r", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "G56GQJKkvya9RvjFNA3h9eVZBYdbJTjBPyQSEDHjPZ5Y", + block_height: 126379147, + block_timestamp: 1724406875632982300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "ecuMqk5yMoArL7dX7KAnG3MxBvqdFY7wbMLS7RNnwn5", + included_in_block_hash: "BFDpUuQjakxHCsUszoc9kVufz1tU6P5nvgY54JafVwH2", + block_timestamp: "1724406872968221856", + block: { block_height: 126379145 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 5e19, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.664427857191e20 }, + }, + { + id: "7665322417", + receipt_id: "7zQx462i8a35hpgFBEJwpBWhTvgrkBeVpgxoUDK94m9J", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "G56GQJKkvya9RvjFNA3h9eVZBYdbJTjBPyQSEDHjPZ5Y", + block_height: 126379147, + block_timestamp: 1724406875632982300, + }, + receipt_outcome: { + gas_burnt: 3125657453921.0, + tokens_burnt: 3.125657453921e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "ecuMqk5yMoArL7dX7KAnG3MxBvqdFY7wbMLS7RNnwn5", + included_in_block_hash: "BFDpUuQjakxHCsUszoc9kVufz1tU6P5nvgY54JafVwH2", + block_timestamp: "1724406872968221856", + block: { block_height: 126379145 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.125657453921e20, + args: '{"proposal_id": 51}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.664427857191e20 }, + }, + { + id: "7665323177", + receipt_id: "BwV3iGv1M9212u3qtELhcZqCEPzBE5ru1Bnz4VFXM8fG", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5sJ5Y33E19XABn3wNbv8nS99eZJQZWFgD3xPPZh5a4dV", + block_height: 126379149, + block_timestamp: 1724406878279723500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "ecuMqk5yMoArL7dX7KAnG3MxBvqdFY7wbMLS7RNnwn5", + included_in_block_hash: "BFDpUuQjakxHCsUszoc9kVufz1tU6P5nvgY54JafVwH2", + block_timestamp: "1724406872968221856", + block: { block_height: 126379145 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.664427857191e20 }, + }, + { + id: "7665374578", + receipt_id: "5rp5WMj6tZNdZ5roKfQTBhe8GxAJuL9REpPCBtJ711j9", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DELBsRSPt35RceqmYWNuVpDw2Y6r5u2fngTUB3wBo8cY", + block_height: 126379234, + block_timestamp: 1724406985399056600, + }, + receipt_outcome: { + gas_burnt: 3781481384950.0, + tokens_burnt: 3.78148138495e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "8w4vWVmzphF6kee9aEtcQVuv9K1ZAt6vGiLAyiDaqrAA", + included_in_block_hash: "98Vm2JFfDHhEbJyKViYm8iessmZsJ226tJz7hrE6MYfZ", + block_timestamp: "1724406984162859445", + block: { block_height: 126379233 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.78148138495e20, + args: '{"id": 39, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.690588514683e20 }, + }, + { + id: "7665375784", + receipt_id: "6JD37JZa7GN8n2tTXED2PDhLa3U5oEW6MEBDQXcrAuex", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "88VdbxnSCdFHsUV6Br4Nte2W4dQjKdcJrfjXPcXjBL9B", + block_height: 126379235, + block_timestamp: 1724406986754842000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "8w4vWVmzphF6kee9aEtcQVuv9K1ZAt6vGiLAyiDaqrAA", + included_in_block_hash: "98Vm2JFfDHhEbJyKViYm8iessmZsJ226tJz7hrE6MYfZ", + block_timestamp: "1724406984162859445", + block: { block_height: 126379233 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 4e19, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.690588514683e20 }, + }, + { + id: "7665375787", + receipt_id: "G5BFzzcQAgfp94fGYw4FrRJ1gaevmwcGbcXa2j3yUhnh", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "88VdbxnSCdFHsUV6Br4Nte2W4dQjKdcJrfjXPcXjBL9B", + block_height: 126379235, + block_timestamp: 1724406986754842000, + }, + receipt_outcome: { + gas_burnt: 3152584421273.0, + tokens_burnt: 3.152584421273e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "8w4vWVmzphF6kee9aEtcQVuv9K1ZAt6vGiLAyiDaqrAA", + included_in_block_hash: "98Vm2JFfDHhEbJyKViYm8iessmZsJ226tJz7hrE6MYfZ", + block_timestamp: "1724406984162859445", + block: { block_height: 126379233 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.152584421273e20, + args: '{"proposal_id": 39}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.690588514683e20 }, + }, + { + id: "7665376779", + receipt_id: "7qo7y74bSmhHGfy5tiXdEXZaRjpjbaiMD2KPxtfM4RE6", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "C7HYntQ5gwzEay9j28EGowqbFnaZkYnjbusuoTMT2kry", + block_height: 126379237, + block_timestamp: 1724406989471400400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "8w4vWVmzphF6kee9aEtcQVuv9K1ZAt6vGiLAyiDaqrAA", + included_in_block_hash: "98Vm2JFfDHhEbJyKViYm8iessmZsJ226tJz7hrE6MYfZ", + block_timestamp: "1724406984162859445", + block: { block_height: 126379233 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.690588514683e20 }, + }, + { + id: "7665409351", + receipt_id: "4CQQSUHm24NRDC53LEj1dcnU82xWUiE3KoJzcdA7zDpL", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6JdVTur9CoomnS5sWKJrJwNsXdKGbxp8po52a4UubykK", + block_height: 126379343, + block_timestamp: 1724407115799080200, + }, + receipt_outcome: { + gas_burnt: 2941410585769.0, + tokens_burnt: 2.941410585769e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FX3WXhCMB15Xi25y2H4HmRzWz4Ac2LssoqezqksRnhU2", + included_in_block_hash: "2kmSbgsX1cXdVgZJBqwydbDnx8myC7wej1eqsbAJvtPE", + block_timestamp: "1724407114596955778", + block: { block_height: 126379342 }, + receipt_conversion_tokens_burnt: "32913570203000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.941410585769e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":177}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.270546287799e20 }, + }, + { + id: "7665425149", + receipt_id: "HBwBwik19FpKDeNvearULxYTywyojMiQ41ZcMcgKwnRN", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3aWqCFRqPGGLGhbwFH5AMRhVELhNwSxKVmaAB6manZZb", + block_height: 126379389, + block_timestamp: 1724407173422918400, + }, + receipt_outcome: { + gas_burnt: 3364776835981.0, + tokens_burnt: 3.364776835981e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FyhTkZ6i9Gb499KGudza6D6eRjRnXjmD2eU7iD3hwRcL", + included_in_block_hash: "6aQf8KX8KropcuLXQAhdKQkvSLBNG38bp1k2Pu5y7gCs", + block_timestamp: "1724407172169650074", + block: { block_height: 126379388 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.364776835981e20, + args: '{"id": 54, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.898069298226e20 }, + }, + { + id: "7665426004", + receipt_id: "F6kDPrD1Wu9DR8y33jouuhRcvks8bKPcSDAKxiJ5MZZk", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BKDLVSK3A5NvK25G136neZBbETqvMrepmkzDH4bh2E7a", + block_height: 126379390, + block_timestamp: 1724407174748193000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "FyhTkZ6i9Gb499KGudza6D6eRjRnXjmD2eU7iD3hwRcL", + included_in_block_hash: "6aQf8KX8KropcuLXQAhdKQkvSLBNG38bp1k2Pu5y7gCs", + block_timestamp: "1724407172169650074", + block: { block_height: 126379388 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.898069298226e20 }, + }, + { + id: "7674882842", + receipt_id: "G1HXdGEPBHj8hzMxQk6x6nGSgGSWSY5cD4KUn2pasJcD", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3T5u9ukVfdYztRhxGg6aXhkMhLDTgbRfGU8q7Ck3RQQ7", + block_height: 126400813, + block_timestamp: 1724433574743033600, + }, + receipt_outcome: { + gas_burnt: 4524169460191.0, + tokens_burnt: 4.524169460191e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GkktdDHgwPjJ5YDMmA4StsqpnSBhyKcaR9o9h3cepuAP", + included_in_block_hash: "6KWuEwugH9nwzy7wvi1Kh6mSvCLqDy1XTvkTbRMNtsCw", + block_timestamp: "1724433573371240708", + block: { block_height: 126400812 }, + receipt_conversion_tokens_burnt: "48892383099500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.524169460191e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "test03.near", "test05.near", "theori.near", "treasurytestuserledger.near", "tfdevhub.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "100000000000000000000000", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.013093291186e20 }, + }, + { + id: "7674884168", + receipt_id: "9PHi4ia6ie6dDpUJ3ktMuDAgpdoJgZ83esycuBcVrNdS", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "67TSwQzuvgBnqg9xRkVQaUCAXk95J5sFppJpw6W2MHTA", + block_height: 126400817, + block_timestamp: 1724433579936128000, + }, + receipt_outcome: { + gas_burnt: 4907080338173.0, + tokens_burnt: 4.907080338173e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3sWqhXVXw6vrgeE3iCMXMgn1TWV3ieXZ73uQG8UQZhcg", + included_in_block_hash: "DPebJWREysUzXaAiCkJ2LrKsXMYLqvgLJJ73pzpZGjR", + block_timestamp: "1724433578959984306", + block: { block_height: 126400816 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.907080338173e20, + args: '{"id": 55, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.440420484133e20 }, + }, + { + id: "7674884845", + receipt_id: "HCGdtzGNgPrRCUQHFd6dvBVJq5e2HiFwXtkcvwWALWRJ", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Ay6LPT6Mu57jniocTzXHjniPGK6MWowL7hYFgVmfwwq2", + block_height: 126400818, + block_timestamp: 1724433581331266600, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "3sWqhXVXw6vrgeE3iCMXMgn1TWV3ieXZ73uQG8UQZhcg", + included_in_block_hash: "DPebJWREysUzXaAiCkJ2LrKsXMYLqvgLJJ73pzpZGjR", + block_timestamp: "1724433578959984306", + block: { block_height: 126400816 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.440420484133e20 }, + }, + { + id: "7743803158", + receipt_id: "GEGj4pNh6th6bVT9oyb4zEigPxP61SBFZFQNaWXYhxwv", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4sbUbQaEmMqytEstUaSgDP2bekYe5mb17vaQ497TLqzZ", + block_height: 126620011, + block_timestamp: 1724688272390893000, + }, + receipt_outcome: { + gas_burnt: 2944185854662.0, + tokens_burnt: 2.944185854662e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DwSkiRh9Moz7bTruLeZ9WQV4piJ53wx8pUmbTzdf29Zy", + included_in_block_hash: "EiANgrL4LKex6mYBRGsUJS3y7XUAQgu4dsb122BA9joE", + block_timestamp: "1724688271064637990", + block: { block_height: 126620010 }, + receipt_conversion_tokens_burnt: "32913570203000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.944185854662e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":177}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.273321556692e20 }, + }, + { + id: "7743826895", + receipt_id: "57wYv2iayPdWkia5hFdbY1nHKBBUZfRgpYsn6Hew2ZtL", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BTWFcanCQ3JXVJYmrxP6GkdPfiVSsxJw6Vt92okKjjuV", + block_height: 126620043, + block_timestamp: 1724688311636754400, + }, + receipt_outcome: { + gas_burnt: 2902979038176.0, + tokens_burnt: 2.902979038176e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4TPa5MeuFP4RpdDQYrWaeMCh1YLUXasTypz4sPV1LTUv", + included_in_block_hash: "FBHfMEf7BChaeV8XiPqBCDkAUwbFBV39vUYzsYBo67kQ", + block_timestamp: "1724688310379952734", + block: { block_height: 126620042 }, + receipt_conversion_tokens_burnt: "32923106946000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.902979038176e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "500", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Hello\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":175}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.232210107636e20 }, + }, + { + id: "7743847282", + receipt_id: "3CKmqAz3RuFYc7ZfBmD51QzyDnVbJ2PzAPpGcTXgc7Vk", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3hHpBtycxhkJWj8sLMD4fUJ9FHRQhMKNcuHZSaz6t8sd", + block_height: 126620072, + block_timestamp: 1724688347216672500, + }, + receipt_outcome: { + gas_burnt: 2895312553874.0, + tokens_burnt: 2.8953125538739998e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "C8CWPTqMNtecFRrDtJQiBDAyXKCXgPVvFhvxb39hzKFN", + included_in_block_hash: "AGZMQiuz1t5AP6ipPNeLMXJS7tNK674hNDxnmCh8m14p", + block_timestamp: "1724688346131988059", + block: { block_height: 126620071 }, + receipt_conversion_tokens_burnt: "33147220406500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.8953125538739998e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000", "token_id": "usdt.tether-token.near", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Developer Contributor report by Megha for 07/15/2024 - 08/11/2024\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Worked on treasury dashboard: added new payment and members page, added base for stake delegation requests.\\\\\\\\\\\\\\\\nWorked on devhub and other instances: fixed minor bugs, created reusable proposal feed component.\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":174}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.226784757939e20 }, + }, + { + id: "7743867057", + receipt_id: "8dDSz7dztt5BTD6Bp2ARvrF5gPwXZiBE8bbyZMKoN7eV", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BUXLSacY8FwgGQqf14DWbrjNQHD5yQTpFB4VBBWyhZzw", + block_height: 126620101, + block_timestamp: 1724688381266108000, + }, + receipt_outcome: { + gas_burnt: 2839689182346.0, + tokens_burnt: 2.8396891823459998e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "ANLtzrs9prHt8vW76WpAc4Y1J4dNCwhuwYoZzPYVTJgd", + included_in_block_hash: "5hDDCDqd9eNhapbYqWCRKvTSCmsVnpMzxhLetejYsCsa", + block_timestamp: "1724688380134665404", + block: { block_height: 126620100 }, + receipt_conversion_tokens_burnt: "31893138702000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.8396891823459998e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000000000000000000000", "token_id": "", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"This is a test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"This is another test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Hello\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.1586205693660004e20 }, + }, + { + id: "7743888761", + receipt_id: "5pJuqj3mnHCu4eqZi5F5P7u4sfzYeBka1se3oFCmQXPq", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BSAygPeJe1dufzKGgYzSdoPf2pezcTgJ7yiQnToqoZsM", + block_height: 126620136, + block_timestamp: 1724688420955437800, + }, + receipt_outcome: { + gas_burnt: 1627849858429.0, + tokens_burnt: 1.627849858429e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "2KNYpQSw9gr6YpxC5M2QQxFRiFKEaoQ7CH2YJeTWqHVa", + included_in_block_hash: "BSZ1wXhhSZLm6MdZqyMvsjszSMcAYJLp4BEvuM9mHoJG", + block_timestamp: "1724688419820884453", + block: { block_height: 126620135 }, + receipt_conversion_tokens_burnt: "32226924707000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 1.627849858429e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "0.005", "token_id": "usdt.tether-token.near", "receiver_id": "theori.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Near Contract Standards payment request by Robert\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Contract Standards Work Group grant\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"a\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":173}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 1.950119105499e20 }, + }, + { + id: "7744231949", + receipt_id: "G7YR5a8X9qmTBftLC8D9voaxGyNnw3TugzRyaSW3QMaq", + predecessor_account_id: "test03.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2v4bgroNBBpQafwUktqMERx3T5FkfYJHbK4UTG5pZtCt", + block_height: 126620752, + block_timestamp: 1724689157243324200, + }, + receipt_outcome: { + gas_burnt: 3650974065565.0, + tokens_burnt: 3.650974065565e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9rM594hPFjDHMRSUt4L6uPn1PcTtVou6jo9cfxe76LuL", + included_in_block_hash: "4jQeupqPyafTniopawV6VfMzWCzDs4A5hthfHhH5EuQT", + block_timestamp: "1724689155989830310", + block: { block_height: 126620751 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.650974065565e20, + args: '{"id": 59, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.515261402997001e20 }, + }, + { + id: "7744232363", + receipt_id: "6fWXsijxaS7NiHKmVD6tiB9ddPc6kzXJ2uqa2RLtBftv", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3PipouKJSqcjoXjkTd3uxuUwo2JjjVxURjBrjk6hureJ", + block_height: 126620753, + block_timestamp: 1724689158556558800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "9rM594hPFjDHMRSUt4L6uPn1PcTtVou6jo9cfxe76LuL", + included_in_block_hash: "4jQeupqPyafTniopawV6VfMzWCzDs4A5hthfHhH5EuQT", + block_timestamp: "1724689155989830310", + block: { block_height: 126620751 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e21, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.515261402997001e20 }, + }, + { + id: "7744232368", + receipt_id: "59ebGKSpfidrtheMQ3ufszBaDnLrb5YG7jRhmXhL9wC2", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3PipouKJSqcjoXjkTd3uxuUwo2JjjVxURjBrjk6hureJ", + block_height: 126620753, + block_timestamp: 1724689158556558800, + }, + receipt_outcome: { + gas_burnt: 3107764628972.0, + tokens_burnt: 3.1077646289720004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9rM594hPFjDHMRSUt4L6uPn1PcTtVou6jo9cfxe76LuL", + included_in_block_hash: "4jQeupqPyafTniopawV6VfMzWCzDs4A5hthfHhH5EuQT", + block_timestamp: "1724689155989830310", + block: { block_height: 126620751 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.1077646289720004e20, + args: '{"proposal_id": 59}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.515261402997001e20 }, + }, + { + id: "7744233210", + receipt_id: "7A26auABBxQRseRbJt7jSr27C5ZuAF9Q2dVrP3Dep84V", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Ci4pqukrkQQpjLcs1894i1pbdsSPpH1hW4kUoECM7bTf", + block_height: 126620755, + block_timestamp: 1724689161158936000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "9rM594hPFjDHMRSUt4L6uPn1PcTtVou6jo9cfxe76LuL", + included_in_block_hash: "4jQeupqPyafTniopawV6VfMzWCzDs4A5hthfHhH5EuQT", + block_timestamp: "1724689155989830310", + block: { block_height: 126620751 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.515261402997001e20 }, + }, + { + id: "7751028708", + receipt_id: "9Kq6dWPNoej58eGzbQ2aWTMEAggfWJJNJpQjK5xDuXQM", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FKCGzovbD7S236PHe82PuEgjBpEKcBTDTMogAScAacHr", + block_height: 126632611, + block_timestamp: 1724703040886359800, + }, + receipt_outcome: { + gas_burnt: 3031409623933.0, + tokens_burnt: 3.031409623933e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3mPneiJCVQoBipgduymU4hz4VJuod4faYxsLGp6gNsSH", + included_in_block_hash: "NSQBdzuhxSQXhZUF9n2sVnHqTf1ZSoTzBuQTUb11nKo", + block_timestamp: "1724703039560497467", + block: { block_height: 126632610 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.031409623933e20, + args: '{"id": 32, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.341519523678e20 }, + }, + { + id: "7768932622", + receipt_id: "78srNeXWRHCaKfeJ3YYKaLjG739bCNSbk4HKAeeUa5St", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "B7cXwTB1E3PrQrbEU4VSBvRmMyLezzqijsseG1gTbDhp", + block_height: 126675759, + block_timestamp: 1724753957924404700, + }, + receipt_outcome: { + gas_burnt: 3863968731285.0, + tokens_burnt: 3.863968731285e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AqgDm2oo1GckWdy9YeVWyPJyX4Us3kKhSSRT7sLH3nb2", + included_in_block_hash: "D2N9K6hRRjwQ6Kpq4DSQuWXZUyUQ7YBbNuktFzXw5ZW2", + block_timestamp: "1724753956512187369", + block: { block_height: 126675758 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.863968731285e20, + args: '{"id": 58, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.557929909297e20 }, + }, + { + id: "7768933156", + receipt_id: "kGCLhgrnNptsfhdPVbKJ31aWepJutYkh7JUBnYKqPDZ", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "usdt.tether-token.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HGX83oG4CtDm5yBHwzUkYoHAcYsWk4aVWsFJkHvVkujW", + block_height: 126675760, + block_timestamp: 1724753959144467200, + }, + receipt_outcome: { + gas_burnt: 1980798984093.0, + tokens_burnt: 1.980798984093e20, + executor_account_id: "usdt.tether-token.near", + status: false, + }, + transaction_hash: "AqgDm2oo1GckWdy9YeVWyPJyX4Us3kKhSSRT7sLH3nb2", + included_in_block_hash: "D2N9K6hRRjwQ6Kpq4DSQuWXZUyUQ7YBbNuktFzXw5ZW2", + block_timestamp: "1724753956512187369", + block: { block_height: 126675758 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer", + deposit: 1.0, + fee: 1.980798984093e20, + args: '{"memo": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Developer Contributor report by Megha for 07/15/2024 - 08/11/2024\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Worked on treasury dashboard: added new payment and members page, added base for stake delegation requests.\\\\\\\\\\\\\\\\nWorked on devhub and other instances: fixed minor bugs, created reusable proposal feed component.\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":174}", "amount": "1000", "receiver_id": "theori.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.557929909297e20 }, + }, + { + id: "7768933162", + receipt_id: "EF9E6k8qr55Yy7QEP3JBE7FPvqdHrYD8NXsD38GYjabt", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HGX83oG4CtDm5yBHwzUkYoHAcYsWk4aVWsFJkHvVkujW", + block_height: 126675760, + block_timestamp: 1724753959144467200, + }, + receipt_outcome: { + gas_burnt: 2403004610459.0, + tokens_burnt: 2.403004610459e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AqgDm2oo1GckWdy9YeVWyPJyX4Us3kKhSSRT7sLH3nb2", + included_in_block_hash: "D2N9K6hRRjwQ6Kpq4DSQuWXZUyUQ7YBbNuktFzXw5ZW2", + block_timestamp: "1724753956512187369", + block: { block_height: 126675758 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 2.403004610459e20, + args: '{"proposal_id": 58}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.557929909297e20 }, + }, + { + id: "7768933323", + receipt_id: "3ozMNnryouNFkyXiN8NnneEdEf7aX9dmvcLTukc1jTTh", + predecessor_account_id: "system", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3r2jTc1U8HhT82Ah3fg8aTdup2BMa77wwyKiiysc5L15", + block_height: 126675761, + block_timestamp: 1724753960433665500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 0.0, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AqgDm2oo1GckWdy9YeVWyPJyX4Us3kKhSSRT7sLH3nb2", + included_in_block_hash: "D2N9K6hRRjwQ6Kpq4DSQuWXZUyUQ7YBbNuktFzXw5ZW2", + block_timestamp: "1724753956512187369", + block: { block_height: 126675758 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { action: "TRANSFER", method: null, deposit: 1.0, fee: 0.0, args: null }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.557929909297e20 }, + }, + { + id: "7769211723", + receipt_id: "DXq3TJjH4xKyY7QqnQrGHDPGH9nS4a42dbYnCCoLGPc6", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3DPkB4ef2kuyzpy4DtrXep8Acto6XcgCqLU7srAnSFej", + block_height: 126676367, + block_timestamp: 1724754688201643300, + }, + receipt_outcome: { + gas_burnt: 3863233976945.0, + tokens_burnt: 3.863233976945e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "73V5jQcKj5R5p3wFHRezmAxDr3RTayMPSJh2WYruwyGY", + included_in_block_hash: "3v3s2MZvHTisytUmmMMTQGWz3XKk7p1r9Kx5WnHSyTDj", + block_timestamp: "1724754687060511785", + block: { block_height: 126676366 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.863233976945e20, + args: '{"id": 57, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.757419231398e20 }, + }, + { + id: "7769212371", + receipt_id: "9pgPZdEzBzLtgpMePyVKg72wiVm6dk2s7jtRy5rNjKCh", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "E6tUbsjJeiosUuXLLYXcDVgGZYWEpFZYrSCxrCPSVF2k", + block_height: 126676368, + block_timestamp: 1724754689662843100, + }, + receipt_outcome: { + gas_burnt: 2187252459470.0, + tokens_burnt: 2.18725245947e20, + executor_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + status: false, + }, + transaction_hash: "73V5jQcKj5R5p3wFHRezmAxDr3RTayMPSJh2WYruwyGY", + included_in_block_hash: "3v3s2MZvHTisytUmmMMTQGWz3XKk7p1r9Kx5WnHSyTDj", + block_timestamp: "1724754687060511785", + block: { block_height: 126676366 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer", + deposit: 1.0, + fee: 2.18725245947e20, + args: '{"memo": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Hello\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":175}", "amount": "500", "receiver_id": "theori.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.757419231398e20 }, + }, + { + id: "7769212372", + receipt_id: "7TbLkjJ3HXRRhJmG8WT54uaP392uFcNGi4xWFQfNRhL5", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "E6tUbsjJeiosUuXLLYXcDVgGZYWEpFZYrSCxrCPSVF2k", + block_height: 126676368, + block_timestamp: 1724754689662843100, + }, + receipt_outcome: { + gas_burnt: 2396775211523.0, + tokens_burnt: 2.396775211523e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "73V5jQcKj5R5p3wFHRezmAxDr3RTayMPSJh2WYruwyGY", + included_in_block_hash: "3v3s2MZvHTisytUmmMMTQGWz3XKk7p1r9Kx5WnHSyTDj", + block_timestamp: "1724754687060511785", + block: { block_height: 126676366 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 2.396775211523e20, + args: '{"proposal_id": 57}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.757419231398e20 }, + }, + { + id: "7769212800", + receipt_id: "7C4Ez2VBz1vBX1h3jADHJQgVkKbxxAhEW1YoEaCEax4K", + predecessor_account_id: "system", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EMAu6sbXdAGcjgb1Co9dv17sGyCm9R7KwNzcQjWh4xQC", + block_height: 126676369, + block_timestamp: 1724754690568885000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 0.0, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "73V5jQcKj5R5p3wFHRezmAxDr3RTayMPSJh2WYruwyGY", + included_in_block_hash: "3v3s2MZvHTisytUmmMMTQGWz3XKk7p1r9Kx5WnHSyTDj", + block_timestamp: "1724754687060511785", + block: { block_height: 126676366 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { action: "TRANSFER", method: null, deposit: 1.0, fee: 0.0, args: null }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.757419231398e20 }, + }, + { + id: "7821291468", + receipt_id: "4VGwy8PMQ6ZnRJLyLbqJS8aMBjchtzkUutYv5guJCPB7", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FjA92RBq118h6PUvCNKSJ1qEi4gaMCZSNdZJqqocotWD", + block_height: 126790324, + block_timestamp: 1724899764673791000, + }, + receipt_outcome: { + gas_burnt: 2890464568826.0, + tokens_burnt: 2.890464568826e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2aBHA5rhWXpJn9mJ1tDWqs9KuenLB2vQP3tsDJxTZ5Nz", + included_in_block_hash: "DFBcoV6j3XWZPAzqghdw7Wew2pStKiB7RjfAdYBZZ3ZV", + block_timestamp: "1724899763508966254", + block: { block_height: 126790323 }, + receipt_conversion_tokens_burnt: "31802539643500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.890464568826e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000000000000000000000", "token_id": "", "receiver_id": "freski.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Neadre Design System\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.208489965261e20 }, + }, + { + id: "8087371652", + receipt_id: "FpbBaozNcAR2jhhMuR3Dzot54SGGosZZYZCPMvMZCeW2", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FJ3n6G5jvLFfLNEEerMTNsaxuJKSjxs4FiAzyK1HEr4W", + block_height: 127439129, + block_timestamp: 1725645925324875500, + }, + receipt_outcome: { + gas_burnt: 2168041938396.0, + tokens_burnt: 2.168041938396e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "Ga8qBYyPdqsbuxcLTjSuiREZoMgmSyPuxj79yKbpk4Fb", + included_in_block_hash: "4Amx4JQs5ULshEKUoxNjpq6VeCPqJHpbAb4h8SXwNuZU", + block_timestamp: "1725645924233076317", + block: { block_height: 127439128 }, + receipt_conversion_tokens_burnt: "32322292137000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.168041938396e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1500000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "devdao.sputnik-dao.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.4912648597660002e20 }, + }, + { + id: "8087400270", + receipt_id: "93UFQC1mkK5dk8zYK5ZGfGrngS1gm9tNb7mxvKtE1Hfp", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "CMvz6GEc2JkEWfrZaSvU3XF8qtSoybH9m7ftpssV5HS4", + block_height: 127439208, + block_timestamp: 1725646014308286000, + }, + receipt_outcome: { + gas_burnt: 2846868167592.0, + tokens_burnt: 2.846868167592e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3uBo2Kff8GsycPutSkBigfYgmSsxfJnBCgXEQc9qfwMT", + included_in_block_hash: "B8NxqPrXjRwPzoEmSCWik1XXtcrNeeG8QVBpMSj7xSSX", + block_timestamp: "1725646013205462608", + block: { block_height: 127439207 }, + receipt_conversion_tokens_burnt: "32322292137000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.846868167592e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1500000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "devdao.sputnik-dao.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.170091088962e20 }, + }, + { + id: "8087521356", + receipt_id: "HG5dmqfhQHntWA3m9c5tBjrAuRxQaY2xPonw8TCdP2HS", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9FGh8MnQTYhjoJGX9p8qxudcFT4Z8bxEgozf2o9aeB7z", + block_height: 127439505, + block_timestamp: 1725646353129980400, + }, + receipt_outcome: { + gas_burnt: 3832322423885.0, + tokens_burnt: 3.832322423885e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "C8GF1LRhq5YuNYZWa5B2htAWcJpkp3YABf1uJjWmB3i2", + included_in_block_hash: "C97tgrg7xmCdjgCLZPCFoYQmy4hm8kSyJsbz2S7BXJnh", + block_timestamp: "1725646352026696588", + block: { block_height: 127439504 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.832322423885e20, + args: '{"id": 61, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.750889276952e20 }, + }, + { + id: "8087522247", + receipt_id: "3irhtnJ5yWAiSUunw6N6d7TpePLevHPyoEwn2LS3RrQU", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Cj2Ydu3tgrkuziG2b7oez82ozNWyBxxB64cmPwCTLHUc", + block_height: 127439506, + block_timestamp: 1725646354453985000, + }, + receipt_outcome: { + gas_burnt: 2226967864052.0, + tokens_burnt: 2.226967864052e20, + executor_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + status: false, + }, + transaction_hash: "C8GF1LRhq5YuNYZWa5B2htAWcJpkp3YABf1uJjWmB3i2", + included_in_block_hash: "C97tgrg7xmCdjgCLZPCFoYQmy4hm8kSyJsbz2S7BXJnh", + block_timestamp: "1725646352026696588", + block: { block_height: 127439504 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer", + deposit: 1.0, + fee: 2.226967864052e20, + args: '{"memo": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}", "amount": "1500000", "receiver_id": "devdao.sputnik-dao.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.750889276952e20 }, + }, + { + id: "8087522250", + receipt_id: "5qwksUAEfs4jfsXDwvgRTjJ6vRuKfuhDzKHsdNbhGcnb", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Cj2Ydu3tgrkuziG2b7oez82ozNWyBxxB64cmPwCTLHUc", + block_height: 127439506, + block_timestamp: 1725646354453985000, + }, + receipt_outcome: { + gas_burnt: 2381441405555.0, + tokens_burnt: 2.381441405555e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "C8GF1LRhq5YuNYZWa5B2htAWcJpkp3YABf1uJjWmB3i2", + included_in_block_hash: "C97tgrg7xmCdjgCLZPCFoYQmy4hm8kSyJsbz2S7BXJnh", + block_timestamp: "1725646352026696588", + block: { block_height: 127439504 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 2.381441405555e20, + args: '{"proposal_id": 61}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.750889276952e20 }, + }, + { + id: "8087523021", + receipt_id: "9M7rqhGmvDoBoGK7GARoQaxPs27Pr1sz4qYZuTX1omrL", + predecessor_account_id: "system", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4x9BXzm4SJoNau6E2bFtcpPUyPo6m4k9ecNbqfPjDZgs", + block_height: 127439507, + block_timestamp: 1725646355596628500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 0.0, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "C8GF1LRhq5YuNYZWa5B2htAWcJpkp3YABf1uJjWmB3i2", + included_in_block_hash: "C97tgrg7xmCdjgCLZPCFoYQmy4hm8kSyJsbz2S7BXJnh", + block_timestamp: "1725646352026696588", + block: { block_height: 127439504 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { action: "TRANSFER", method: null, deposit: 1.0, fee: 0.0, args: null }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 8.750889276952e20 }, + }, + { + id: "8087953700", + receipt_id: "GqJK4pgJvWeS5XwgsMo1UnsP83P5UyVUcEMQ5hw9BJn1", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "J387oME8DjLvhDNev9pFcJGsgNxec4dwRLpW5ZCTyFKi", + block_height: 127440408, + block_timestamp: 1725647387102718500, + }, + receipt_outcome: { + gas_burnt: 2843223556824.0, + tokens_burnt: 2.843223556824e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BaREECpeDReR8A3jkG1i93aQ6XVoXEFfBDEFzgp4ktsC", + included_in_block_hash: "tbKqF8harTnraifKp2B8246aegKikBbC2oKLq48x4dk", + block_timestamp: "1725647385997693248", + block: { block_height: 127440407 }, + receipt_conversion_tokens_burnt: "32122020534000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.843223556824e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "4500000", "token_id": "usdt.tether-token.near", "receiver_id": "devdao.sputnik-dao.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.164443762164e20 }, + }, + { + id: "8087959823", + receipt_id: "8E1T8fQS8pQff61WQ6Y7uNnRtAoPAcbZW8orF56n6Scw", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "1iw7pjEXfLDptrMsnzWvqgSK9hTHWsBREf7rVMiFHvn", + block_height: 127440426, + block_timestamp: 1725647409601936100, + }, + receipt_outcome: { + gas_burnt: 3813754185461.0, + tokens_burnt: 3.8137541854610004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7tWbgeNNJRYmZg5TiXTFcnDTokJ37jTJSzwf8GWQ75cz", + included_in_block_hash: "9oer9iS6HZJNeNGVNwnwwaVe3Z9UgGehTRqSmAHbHeHu", + block_timestamp: "1725647408220918030", + block: { block_height: 127440425 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.8137541854610004e20, + args: '{"id": 62, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0012166143608e21 }, + }, + { + id: "8087960385", + receipt_id: "H4ZHSed1vFibnR2iCN3K81B7vPAKYLWfbtYog9VVSsAp", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "usdt.tether-token.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ExjHhGcPs82PU3kJAKvp7DxYS8bKAi4wZxhgLPBL94mF", + block_height: 127440427, + block_timestamp: 1725647410987446300, + }, + receipt_outcome: { + gas_burnt: 2546268977779.0, + tokens_burnt: 2.546268977779e20, + executor_account_id: "usdt.tether-token.near", + status: true, + }, + transaction_hash: "7tWbgeNNJRYmZg5TiXTFcnDTokJ37jTJSzwf8GWQ75cz", + included_in_block_hash: "9oer9iS6HZJNeNGVNwnwwaVe3Z9UgGehTRqSmAHbHeHu", + block_timestamp: "1725647408220918030", + block: { block_height: 127440425 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer", + deposit: 1.0, + fee: 2.546268977779e20, + args: '{"memo": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}", "amount": "4500000", "receiver_id": "devdao.sputnik-dao.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0012166143608e21 }, + }, + { + id: "8087960389", + receipt_id: "CTj6y9prkbVSw1dv34vx5yqvxWkxbzeHK2guNdRAEHCS", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ExjHhGcPs82PU3kJAKvp7DxYS8bKAi4wZxhgLPBL94mF", + block_height: 127440427, + block_timestamp: 1725647410987446300, + }, + receipt_outcome: { + gas_burnt: 3118802834408.0, + tokens_burnt: 3.118802834408e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7tWbgeNNJRYmZg5TiXTFcnDTokJ37jTJSzwf8GWQ75cz", + included_in_block_hash: "9oer9iS6HZJNeNGVNwnwwaVe3Z9UgGehTRqSmAHbHeHu", + block_timestamp: "1725647408220918030", + block: { block_height: 127440425 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.118802834408e20, + args: '{"proposal_id": 62}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0012166143608e21 }, + }, + { + id: "8087961147", + receipt_id: "AqUu4cfd1f6BDaLNYcgWTHohXN34pyna42pcsiPhvYXo", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9fAgr39o7R8xFCJjad7eBRS4B1mM4Fz5xPEzvtb1womj", + block_height: 127440429, + block_timestamp: 1725647413546597400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "7tWbgeNNJRYmZg5TiXTFcnDTokJ37jTJSzwf8GWQ75cz", + included_in_block_hash: "9oer9iS6HZJNeNGVNwnwwaVe3Z9UgGehTRqSmAHbHeHu", + block_timestamp: "1725647408220918030", + block: { block_height: 127440425 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0012166143608e21 }, + }, + { + id: "8087986126", + receipt_id: "2PrXKxwdyohfzNfGtVfvdiNKyJ4xrESHQAfif82hfcN7", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9LVQyxT8fjfhfHqyoKg8RP9tC6pX8VxJsCzspVKpbcvB", + block_height: 127440507, + block_timestamp: 1725647505372579600, + }, + receipt_outcome: { + gas_burnt: 2846868167592.0, + tokens_burnt: 2.846868167592e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "6T25cd6g1hD3W8q7kWm6n3xoPKogG2dgu3nQabxQNhhc", + included_in_block_hash: "8WSCaADpqqpwVzyCiLLhz9jJRYtrTjyULMfMpKofwud8", + block_timestamp: "1725647504325924175", + block: { block_height: 127440506 }, + receipt_conversion_tokens_burnt: "32322292137000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.846868167592e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1500000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "devdao.sputnik-dao.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.170091088962e20 }, + }, + { + id: "8087991778", + receipt_id: "8iiWsSbNGbinqTrF1UGkfxvK1DWGDQnduhktYntL11fy", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BhfE5n9yGDeByQT9pg9r4TQNizgc3TgusJs94WmiJGMv", + block_height: 127440526, + block_timestamp: 1725647526857539300, + }, + receipt_outcome: { + gas_burnt: 3832322423885.0, + tokens_burnt: 3.832322423885e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2zVLf3kATuGg79CjsSgnFmWSeZhF8vEVHNX6byoLBuEL", + included_in_block_hash: "7s8zck8Keg2sKSSzpHtFApT6P78ngzp4b7umuYVGwWes", + block_timestamp: "1725647525576524698", + block: { block_height: 127440525 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.832322423885e20, + args: '{"id": 63, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0217783065054e21 }, + }, + { + id: "8087992254", + receipt_id: "H5tWKusNSDhZhJ7K9X7tkqEbiyLC9nysJfoMvpoY8P4d", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AXSumUG5bHy3LCdQVeeJVhaTGntKwPaEESPCmugBNjtQ", + block_height: 127440527, + block_timestamp: 1725647528093097500, + }, + receipt_outcome: { + gas_burnt: 2728267824593.0, + tokens_burnt: 2.728267824593e20, + executor_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + status: true, + }, + transaction_hash: "2zVLf3kATuGg79CjsSgnFmWSeZhF8vEVHNX6byoLBuEL", + included_in_block_hash: "7s8zck8Keg2sKSSzpHtFApT6P78ngzp4b7umuYVGwWes", + block_timestamp: "1725647525576524698", + block: { block_height: 127440525 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer", + deposit: 1.0, + fee: 2.728267824593e20, + args: '{"memo": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}", "amount": "1500000", "receiver_id": "devdao.sputnik-dao.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0217783065054e21 }, + }, + { + id: "8087992255", + receipt_id: "AR4fNvGz8YP8629MeycWhsbcKPiJF1oZne2ogkJtooxw", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AXSumUG5bHy3LCdQVeeJVhaTGntKwPaEESPCmugBNjtQ", + block_height: 127440527, + block_timestamp: 1725647528093097500, + }, + receipt_outcome: { + gas_burnt: 3123852670616.0, + tokens_burnt: 3.123852670616e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2zVLf3kATuGg79CjsSgnFmWSeZhF8vEVHNX6byoLBuEL", + included_in_block_hash: "7s8zck8Keg2sKSSzpHtFApT6P78ngzp4b7umuYVGwWes", + block_timestamp: "1725647525576524698", + block: { block_height: 127440525 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.123852670616e20, + args: '{"proposal_id": 63}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0217783065054e21 }, + }, + { + id: "8087993073", + receipt_id: "TwFckGzNDNcnT7zRGebMtzSpKPGuBCUmAKu3PsR1Au1", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AGDEUTu2ThU5whzStwBAs3dnUpR27FcmQwuRrFuXsbkw", + block_height: 127440529, + block_timestamp: 1725647530080474000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "2zVLf3kATuGg79CjsSgnFmWSeZhF8vEVHNX6byoLBuEL", + included_in_block_hash: "7s8zck8Keg2sKSSzpHtFApT6P78ngzp4b7umuYVGwWes", + block_timestamp: "1725647525576524698", + block: { block_height: 127440525 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0217783065054e21 }, + }, + { + id: "8380520279", + receipt_id: "9wgKZFcMeqFtmrmMKM7so7agtMUfuMaQAusNUbspvKkh", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BLa1dZRwZLjKdeJ9nC8SAVu8J322V5GcjNTqpbjhgU8M", + block_height: 128200800, + block_timestamp: 1726506108864101000, + }, + receipt_outcome: { + gas_burnt: 2259093897233.0, + tokens_burnt: 2.259093897233e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "8ftd4mF5yRVtgrerj5pRn7MDmpKJp5BWksCo8jhGTqrd", + included_in_block_hash: "B6zcAqDCQ2pcBJezRMHKb5QmFkgCMzZ2esgxgLgiaQQh", + block_timestamp: "1726506107711586377", + block: { block_height: 128200799 }, + receipt_conversion_tokens_burnt: "32045726590000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 2.259093897233e20, + args: '{"proposal": {"kind": {"ChangePolicyUpdateParameters": {"parameters": {"bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update Parameters"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.579551163133e20 }, + }, + { + id: "8380581049", + receipt_id: "9JyiXK1eekwwUcoAhWCT2dwdr1Qb48BQJs7ZgtwueU9P", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BmEkUwoiptLzLxFo9LBz7Q3exLGZ5nkQALP4p9ysNa42", + block_height: 128200987, + block_timestamp: 1726506314980726300, + }, + receipt_outcome: { + gas_burnt: 4507855882586.0, + tokens_burnt: 4.507855882586e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "83tZC2dmbYnrsr8BvuGCABKwaAREd3cA4Vsn5oMCGCLH", + included_in_block_hash: "bCrJmvct9bZTbhYxSizi98E89bZUwpmuwEVHcyQVcdL", + block_timestamp: "1726506313833794549", + block: { block_height: 128200986 }, + receipt_conversion_tokens_burnt: "48782710555000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 1e23, + fee: 4.507855882586e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["treasurytestuserledger.near", "megha19.near", "petersalomonsen.near", "test03.near", "test05.near", "tfdevhub.near", "theori.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 1e23 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.995682988136e20 }, + }, + { + id: "8380633128", + receipt_id: "BtNornCAou9hUiMp6WcSQTYaVA9FrVPBHGnR781sa9V4", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4Ztnsd364u3pL4URShT9AU5E3wZZxgcyhYvyZhkAeZ3u", + block_height: 128201130, + block_timestamp: 1726506482830661400, + }, + receipt_outcome: { + gas_burnt: 4812565357637.0, + tokens_burnt: 4.812565357637e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5kQeskXf5ekxxVKSDqk9CUNKGS4URwtRpJwPK6QxJgeD", + included_in_block_hash: "EvQ1pfReNoLmPmRnJ5BiUpjxNhpmSqnRXL849AnDmnJ7", + block_timestamp: "1726506481784166187", + block: { block_height: 128201129 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.812565357637e20, + args: '{"id": 64, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.3459055035969995e20 }, + }, + { + id: "8380633515", + receipt_id: "Cbc3n5qrCVso3ZZoMHkT6GJNJJFjrzmKEGnYEWGdENU3", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "xb5YKHonoBocdfqXDkcgcQtG7CztBPRShp6ZHiD8EwK", + block_height: 128201131, + block_timestamp: 1726506483881832700, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "5kQeskXf5ekxxVKSDqk9CUNKGS4URwtRpJwPK6QxJgeD", + included_in_block_hash: "EvQ1pfReNoLmPmRnJ5BiUpjxNhpmSqnRXL849AnDmnJ7", + block_timestamp: "1726506481784166187", + block: { block_height: 128201129 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e23, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.3459055035969995e20 }, + }, + { + id: "8380664153", + receipt_id: "FUuHokim2KsAUyFrXMGVg3TAK63qB44SsY2tdnWbRmNn", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8FwUwRxMWeSKDxK88KACrPYoF2oDzL9he9XT2SYTm8W6", + block_height: 128201177, + block_timestamp: 1726506536342041900, + }, + receipt_outcome: { + gas_burnt: 1613582239357.0, + tokens_burnt: 1.613582239357e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "Bjvmo7mdJax4wKNfHM2qXqyrj5qAAgfHWi3bJs5VNfqz", + included_in_block_hash: "5gaDSQmmyEe1A1xneTawcmfAbwPwMMR7QXifdiuetq2t", + block_timestamp: "1726506535130315694", + block: { block_height: 128201176 }, + receipt_conversion_tokens_burnt: "32169704249000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.613582239357e20, + args: '{"proposal": {"kind": {"FunctionCall": {"receiverId": "wrap.near", "functionCalls": [{"gas": "30000000000000", "args": {"account_id": "testing-astradao.sputnik-dao.near", "registration_only": true}, "amount": "0.00125", "methodName": "storage_deposit"}]}}, "description": "{\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 1.935279281847e20 }, + }, + { + id: "8382977206", + receipt_id: "4MhWb9K4kgjqcUh1pEjoU5L9JwY1UvE6T2GGz7cHHVMX", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9XB7YSPtJ5xk2HTubMqKtarzqJwa4Dip8FnAspySS141", + block_height: 128206358, + block_timestamp: 1726512378684487200, + }, + receipt_outcome: { + gas_burnt: 1775180118193.0, + tokens_burnt: 1.775180118193e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "PPCL3p7CLhQEkYGXF2ZTqJtsMxNhqbFGC85sKns4X85", + included_in_block_hash: "C4AMoW7X84NY1xdwbTuDT4g3haFmdvAyuJ7GPTMUibDy", + block_timestamp: "1726512377656785789", + block: { block_height: 128206357 }, + receipt_conversion_tokens_burnt: "34859065775000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.775180118193e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "180000000000000", "args": "eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjQxNzksXCJ0b2tlbl9pblwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwidG9rZW5fb3V0XCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJhbW91bnRfaW5cIjpcIjEwMDAwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiOTk5NzAzNlwifV19In0=", "deposit": "0.000000000000000000000001", "method_name": "ft_transfer_call"}], "receiver_id": "usdt.tether-token.near"}}, "description": "{\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"10\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\":0.001,\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"9.99713\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.1237707759430002e20 }, + }, + { + id: "8383007011", + receipt_id: "GmY2ocKqqtZUvo9PV88RkVwjRSuUfgRDbqMas6kQ9skf", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AKFaig1Q5ZL5sgLiR32i78P4kkR5NhQjcPWdf8KXhdg4", + block_height: 128206442, + block_timestamp: 1726512472982439700, + }, + receipt_outcome: { + gas_burnt: 1775180118193.0, + tokens_burnt: 1.775180118193e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "H3qo8C38brboKLJxH8PvLqEqrT4sgCaq44kEqHz73gt5", + included_in_block_hash: "9CQkqz1bKpwnZUkyi7sJM5xvV56HegD3PTaQtxymc4KE", + block_timestamp: "1726512472023145304", + block: { block_height: 128206441 }, + receipt_conversion_tokens_burnt: "34859065775000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.775180118193e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "180000000000000", "args": "eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjQxNzksXCJ0b2tlbl9pblwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwidG9rZW5fb3V0XCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJhbW91bnRfaW5cIjpcIjEwMDAwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiOTk5NzAzNlwifV19In0=", "deposit": "0.000000000000000000000001", "method_name": "ft_transfer_call"}], "receiver_id": "usdt.tether-token.near"}}, "description": "{\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"10\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\":0.001,\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"9.99713\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.1237707759430002e20 }, + }, + { + id: "8383196572", + receipt_id: "DEjsqd5CcJDf7raKMQPoZcRKf1ivCF2CUnXm2APAciWy", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ARcUVTYUTEquF9KLw7A37ygagdkzrdWB7HWMXrQQXzKg", + block_height: 128206840, + block_timestamp: 1726512917685046800, + }, + receipt_outcome: { + gas_burnt: 1767793763697.0, + tokens_burnt: 1.767793763697e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "4mAzCZatdKFwXzYz9FbtKoRk4dLmanGEhR7rL1RSK4PT", + included_in_block_hash: "LZpA3cuZeaniDsxKENgNsn1jSmtLaH3cLvGNEQtAUzE", + block_timestamp: "1726512916732060954", + block: { block_height: 128206839 }, + receipt_conversion_tokens_burnt: "35097484350000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.767793763697e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "180000000000000", "args": "eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjQxNzksXCJ0b2tlbl9pblwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwidG9rZW5fb3V0XCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJhbW91bnRfaW5cIjpcIjEwMDAwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiOTk5NzAzNlwifV19In0=", "deposit": "0.000000000000000000000001", "method_name": "ft_transfer_call"}], "receiver_id": "usdt.tether-token.near"}}, "description": "eyJpc0Fzc2V0RXhjaGFuZ2VUeG4iOnRydWUsIm5vdGVzIjpudWxsLCJ0b2tlbkluIjoidXNkdC50ZXRoZXItdG9rZW4ubmVhciIsInRva2VuT3V0IjoiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMSIsImFtb3VudEluIjoiMTAiLCJzbGlwcGFnZSI6MC4wMDEsImFtb3VudE91dCI6IjkuOTk3MTMifQ=="}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.118768607197e20 }, + }, + { + id: "8383272812", + receipt_id: "9M9xyKAFUnrzkVM32fWeU6k6Zc4y4qGXahJvWAtf3Gxc", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "N3f14uvZRn2ht1PVYQsghQfusCUfFwbBYY4Y2ttHD8u", + block_height: 128206974, + block_timestamp: 1726513066603958000, + }, + receipt_outcome: { + gas_burnt: 1776541593541.0, + tokens_burnt: 1.776541593541e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "5eq7c7862GjKrEnb6GgDq7uTwkF8he8wj34NR3YAuz57", + included_in_block_hash: "5m67NMGqTNGuKLjGexh3ndowg2AUSNwHpfiG5WWB888R", + block_timestamp: "1726513065604944982", + block: { block_height: 128206973 }, + receipt_conversion_tokens_burnt: "35316829439000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.776541593541e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "180000000000000", "args": "eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjQ1MTMsXCJ0b2tlbl9pblwiOlwiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMVwiLFwidG9rZW5fb3V0XCI6XCJ1c2R0LnRldGhlci10b2tlbi5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjEwMDAwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMTAwMDE3MzhcIn1dfSJ9", "deposit": "0.000000000000000000000001", "method_name": "ft_transfer_call"}], "receiver_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1"}}, "description": "eyJpc0Fzc2V0RXhjaGFuZ2VUeG4iOnRydWUsIm5vdGVzIjpudWxsLCJ0b2tlbkluIjoiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMSIsInRva2VuT3V0IjoidXNkdC50ZXRoZXItdG9rZW4ubmVhciIsImFtb3VudEluIjoiMTAiLCJzbGlwcGFnZSI6IjAuMDAxIiwiYW1vdW50T3V0IjoiMTAuMDAxODMifQ=="}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.129709887931e20 }, + }, + { + id: "8401433796", + receipt_id: "5RPWpLjayYgsdgGSUForgfmxXw83suCR3skw8p9N3nWN", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9iAS81rWaJVkGZKeCoB7NXNiYWP6Y53nMAQ6UhP2zPsC", + block_height: 128256770, + block_timestamp: 1726568709776569300, + }, + receipt_outcome: { + gas_burnt: 1781915365221.0, + tokens_burnt: 1.781915365221e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "CiGh3ozbcWBPQXi7spF58gPuqhM2E2am6HxupRR7bY8i", + included_in_block_hash: "Ah9mtDmasTDj6wnXVLmKmNUZRGC4ttkQS3E2F1yBdJyZ", + block_timestamp: "1726568707110490182", + block: { block_height: 128256769 }, + receipt_conversion_tokens_burnt: "35040263892000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.781915365221e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "180000000000000", "args": "eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjM2ODksXCJ0b2tlbl9pblwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwidG9rZW5fb3V0XCI6XCJkYWMxN2Y5NThkMmVlNTIzYTIyMDYyMDY5OTQ1OTdjMTNkODMxZWM3LmZhY3RvcnkuYnJpZGdlLm5lYXJcIixcImFtb3VudF9pblwiOlwiMTAwMDAwMDBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIwXCJ9LHtcInBvb2xfaWRcIjo0MTc5LFwidG9rZW5faW5cIjpcImRhYzE3Zjk1OGQyZWU1MjNhMjIwNjIwNjk5NDU5N2MxM2Q4MzFlYzcuZmFjdG9yeS5icmlkZ2UubmVhclwiLFwidG9rZW5fb3V0XCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMTAwMDAxNzhcIn1dfSJ9", "deposit": "0.000000000000000000000001", "method_name": "ft_transfer_call"}], "receiver_id": "usdt.tether-token.near"}}, "description": ""}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.132318004141e20 }, + }, + { + id: "8401608357", + receipt_id: "61CmeGpdyviVF3tWHKTjiAtGUxJAgEtceDTDfoE6eHhg", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GCuSGVkqtPtkzogtGsVopFXEqZbPYELVnjM3kWFum8kv", + block_height: 128257097, + block_timestamp: 1726569114785052200, + }, + receipt_outcome: { + gas_burnt: 1775691625773.0, + tokens_burnt: 1.775691625773e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "HND8QhdSNqfk4RBJPMP8xryUGQ9KcNxhW4mS5vVz2jNL", + included_in_block_hash: "rSeTWKvsTky6w7JNY3aFVL3ZAVhr6XNGESkj7Cbpjqx", + block_timestamp: "1726569113427819807", + block: { block_height: 128257096 }, + receipt_conversion_tokens_burnt: "35297755953000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.775691625773e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "180000000000000", "args": "eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjQ1MTMsXCJ0b2tlbl9pblwiOlwiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMVwiLFwidG9rZW5fb3V0XCI6XCJ1c2R0LnRldGhlci10b2tlbi5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjEwMDAwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiOTk5OTQ3MFwifV19In0=", "deposit": "0.000000000000000000000001", "method_name": "ft_transfer_call"}], "receiver_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1"}}, "description": "eyJpc0Fzc2V0RXhjaGFuZ2VUeG4iOnRydWUsIm5vdGVzIjpudWxsLCJ0b2tlbkluIjoiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMSIsInRva2VuT3V0IjoidXNkdC50ZXRoZXItdG9rZW4ubmVhciIsImFtb3VudEluIjoiMTAiLCJzbGlwcGFnZSI6IjAuMDAxIiwiYW1vdW50T3V0IjoiOS45OTk1NyJ9"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.1286691853030002e20 }, + }, + { + id: "8401903442", + receipt_id: "FkuKGU9rXC6sJ9sskKrmt7QBPyEYv76BYUMj5t8RMMX6", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7Vv3kbAiiGEQGGFoJPwTY5pWbfPST1qZTsU5jJ4g6urf", + block_height: 128257686, + block_timestamp: 1726569874881737700, + }, + receipt_outcome: { + gas_burnt: 1688713774165.0, + tokens_burnt: 1.688713774165e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "6wA3SdxCj8GmxgoPgpfNsPFZZxmV8TeEQ5zF2NgTWvRr", + included_in_block_hash: "ksVQDfat6w64URK3GfnFtTFo4X4LNwdtbwNwe6mqS5B", + block_timestamp: "1726569873516621635", + block: { block_height: 128257685 }, + receipt_conversion_tokens_burnt: "33428554325000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.688713774165e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "180000000000000", "args": "", "deposit": "0.000000000000000000000001", "method_name": "ft_transfer_call"}], "receiver_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1"}}, "description": "eyJpc0Fzc2V0RXhjaGFuZ2VUeG4iOnRydWUsIm5vdGVzIjpudWxsLCJ0b2tlbkluIjoiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMSIsInRva2VuT3V0IjoidXNkdC50ZXRoZXItdG9rZW4ubmVhciIsImFtb3VudEluIjoiMTAiLCJzbGlwcGFnZSI6IjAuMDAxIiwiYW1vdW50T3V0IjoiOS45OTk0NiJ9"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.022999317415e20 }, + }, + { + id: "8402017958", + receipt_id: "8S4bLdkYsQcRPKHHcAuaQhUkEKtBoUCF4CRWMegaM6cf", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "G1iitaQqSDGWtzvQCZAiBi8dGvAYwv4ngrrrtRtd1PVK", + block_height: 128257968, + block_timestamp: 1726570230565839400, + }, + receipt_outcome: { + gas_burnt: 2954435006900.0, + tokens_burnt: 2.9544350069e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3e6KsZ3Bt7ZLdLKSoBFpmvTFUfLPdn4RCLc1aBACtHGi", + included_in_block_hash: "GkmNF6374bjtSnBoDMqKB4A2LyNMtQcRDnJV4m7KgZnT", + block_timestamp: "1726570229290230539", + block: { block_height: 128257967 }, + receipt_conversion_tokens_burnt: "34935359719000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.9544350069e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "180000000000000", "args": "eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwIiwibXNnIjoie1wiZm9yY2VcIjowLFwiYWN0aW9uc1wiOlt7XCJwb29sX2lkXCI6NDUxMyxcInRva2VuX2luXCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJ0b2tlbl9vdXRcIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcImFtb3VudF9pblwiOlwiMTAwMDAwMFwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjk5OTg5NVwifV19In0=", "deposit": "1", "method_name": "ft_transfer_call"}], "receiver_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1"}}, "description": "{\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0.001\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0.99990\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.30378860409e20 }, + }, + { + id: "8402617890", + receipt_id: "ATfPkxkhb42dLZM3VLg7s8xMQ4FbPq9MTTQgPfBjj2m4", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EYZPPPsSw5a2kFUma1oYuDw5iihJ8r6jaTjkrzBNzL5k", + block_height: 128259337, + block_timestamp: 1726571947525849300, + }, + receipt_outcome: { + gas_burnt: 2923194191368.0, + tokens_burnt: 2.923194191368e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GqYj4MFGY6wrQEsfcrsZxi4jje5HyfUwy64tFaDRQ3x7", + included_in_block_hash: "HJEjVCQpK1bTyt6nZ44khqDjorq6fsLqyW8ATokSDVTK", + block_timestamp: "1726571946225467834", + block: { block_height: 128259336 }, + receipt_conversion_tokens_burnt: "34787540202500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.923194191368e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "180000000000000", "args": "eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIzMDAwMDAiLCJtc2ciOiJ7XCJmb3JjZVwiOjAsXCJhY3Rpb25zXCI6W3tcInBvb2xfaWRcIjo0MTc5LFwidG9rZW5faW5cIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcInRva2VuX291dFwiOlwiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMVwiLFwiYW1vdW50X2luXCI6XCIzMDAwMDBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIyOTk5MTFcIn1dfSJ9", "deposit": "1", "method_name": "ft_transfer_call"}], "receiver_id": "usdt.tether-token.near"}}, "description": "{\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"this is the notes\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0.3\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0.29991\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.271069593393e20 }, + }, + { + id: "8402665662", + receipt_id: "BdkePMbWkbi3AAs5N15n9L5d6Lb95sGdyFtF4RccneY2", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BorLsh3Js8my47DDzr7exNn4a2YiuC2rrP7sq7zG3Vzw", + block_height: 128259401, + block_timestamp: 1726572027508473600, + }, + receipt_outcome: { + gas_burnt: 3937353989745.0, + tokens_burnt: 3.937353989745e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9PMze99KnxCZy8dUo1PtcgP7WPaGy9X9FhqC4g3Mrhbj", + included_in_block_hash: "F6RMWoxcbWUhHM4RcmujzUNJTnHzWeHKZHxLTqVe9Pqh", + block_timestamp: "1726572026198452653", + block: { block_height: 128259400 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.937353989745e20, + args: '{"id": 66, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.7852485840621e21 }, + }, + { + id: "8402666859", + receipt_id: "2Pmxi4bNg6MS2UFMYfDf7fRwFBsq1zAqVqH8CtwRU975", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "usdt.tether-token.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3XGuC8HEt7LPYqBpKjHqEde1NfXyWNvxDBLP2eMmg6pi", + block_height: 128259402, + block_timestamp: 1726572028836610600, + }, + receipt_outcome: { + gas_burnt: 3279465869396.0, + tokens_burnt: 3.2794658693959995e20, + executor_account_id: "usdt.tether-token.near", + status: true, + }, + transaction_hash: "9PMze99KnxCZy8dUo1PtcgP7WPaGy9X9FhqC4g3Mrhbj", + included_in_block_hash: "F6RMWoxcbWUhHM4RcmujzUNJTnHzWeHKZHxLTqVe9Pqh", + block_timestamp: "1726572026198452653", + block: { block_height: 128259400 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer_call", + deposit: 1.0, + fee: 3.2794658693959995e20, + args: '{"msg": "{\\\\\\\\\\\\\\"force\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\"actions\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4179,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"300000\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"299911\\\\\\\\\\\\\\"}]}", "amount": "300000", "receiver_id": "v2.ref-finance.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.7852485840621e21 }, + }, + { + id: "8402666864", + receipt_id: "8LhaVhBBhupGs2hJq7wgCNCRydB8P5WEKHLT6r1n87ga", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3XGuC8HEt7LPYqBpKjHqEde1NfXyWNvxDBLP2eMmg6pi", + block_height: 128259402, + block_timestamp: 1726572028836610600, + }, + receipt_outcome: { + gas_burnt: 3259876116704.0, + tokens_burnt: 3.259876116704e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9PMze99KnxCZy8dUo1PtcgP7WPaGy9X9FhqC4g3Mrhbj", + included_in_block_hash: "F6RMWoxcbWUhHM4RcmujzUNJTnHzWeHKZHxLTqVe9Pqh", + block_timestamp: "1726572026198452653", + block: { block_height: 128259400 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.259876116704e20, + args: '{"proposal_id": 66}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.7852485840621e21 }, + }, + { + id: "8402671052", + receipt_id: "8uqB6LsfgtLP8fdsv6HaHHTKg3avy2sT7eL9ig4FMhUc", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2zLodUeVYJKoaJ2DRHLRtFkibZAp7Jubpxn962aKdGpf", + block_height: 128259406, + block_timestamp: 1726572034112529200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "9PMze99KnxCZy8dUo1PtcgP7WPaGy9X9FhqC4g3Mrhbj", + included_in_block_hash: "F6RMWoxcbWUhHM4RcmujzUNJTnHzWeHKZHxLTqVe9Pqh", + block_timestamp: "1726572026198452653", + block: { block_height: 128259400 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 2.7852485840621e21 }, + }, + { + id: "8403816523", + receipt_id: "7aGYtB17kecWQM1SQ5RPh9SF2DAqt4ALJw8zun8WJdZP", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FrDpowURRCVW3rouhWCuGLHWQNqsh9URxZfnJWr6q6FB", + block_height: 128261980, + block_timestamp: 1726575309502072800, + }, + receipt_outcome: { + gas_burnt: 3167370998208.0, + tokens_burnt: 3.167370998208e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GQtf1WDReJ9YRVZ95RM5senFNczxyX1sGHjzfL5A4RsZ", + included_in_block_hash: "DbaVfc9BKECkuCc9HAA8TRMfCzRHuZcBXtzH4iKsfiER", + block_timestamp: "1726575308192657171", + block: { block_height: 128261979 }, + receipt_conversion_tokens_burnt: "42936687096000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.167370998208e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "180000000000000", "args": "eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIyMDAwMDAiLCJtc2ciOiJ7XCJmb3JjZVwiOjAsXCJhY3Rpb25zXCI6W3tcInBvb2xfaWRcIjo1MTE4LFwidG9rZW5faW5cIjpcIjE3MjA4NjI4Zjg0ZjVkNmFkMzNmMGRhM2JiYmViMjdmZmNiMzk4ZWFjNTAxYTMxYmQ2YWQyMDExZTM2MTMzYTFcIixcInRva2VuX291dFwiOlwiNDM4ZTQ4ZWQ0Y2U2YmVlY2Y1MDNkNDNiOWRiZDNjMzBkNTE2ZTdmZC5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjIwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6NDk3NCxcInRva2VuX2luXCI6XCI0MzhlNDhlZDRjZTZiZWVjZjUwM2Q0M2I5ZGJkM2MzMGQ1MTZlN2ZkLmZhY3RvcnkuYnJpZGdlLm5lYXJcIixcInRva2VuX291dFwiOlwid3JhcC5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIwXCJ9LHtcInBvb2xfaWRcIjozNzE2LFwidG9rZW5faW5cIjpcIndyYXAubmVhclwiLFwidG9rZW5fb3V0XCI6XCJ1c2R0LnRldGhlci10b2tlbi5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIxOTkxMVwifSx7XCJwb29sX2lkXCI6NTExOCxcInRva2VuX2luXCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJ0b2tlbl9vdXRcIjpcIjQzOGU0OGVkNGNlNmJlZWNmNTAzZDQzYjlkYmQzYzMwZDUxNmU3ZmQuZmFjdG9yeS5icmlkZ2UubmVhclwiLFwiYW1vdW50X2luXCI6XCIxMDAwMFwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjBcIn0se1wicG9vbF9pZFwiOjQ5NzQsXCJ0b2tlbl9pblwiOlwiNDM4ZTQ4ZWQ0Y2U2YmVlY2Y1MDNkNDNiOWRiZDNjMzBkNTE2ZTdmZC5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJ0b2tlbl9vdXRcIjpcIndyYXAubmVhclwiLFwiYW1vdW50X2luXCI6XCIwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6Mzg3OSxcInRva2VuX2luXCI6XCJ3cmFwLm5lYXJcIixcInRva2VuX291dFwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwiYW1vdW50X2luXCI6XCIwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiOTkwMFwifSx7XCJwb29sX2lkXCI6NDUxMyxcInRva2VuX2luXCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJ0b2tlbl9vdXRcIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcImFtb3VudF9pblwiOlwiOTAwMDBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCI4OTA4OFwifSx7XCJwb29sX2lkXCI6NDE3OSxcInRva2VuX2luXCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJ0b2tlbl9vdXRcIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcImFtb3VudF9pblwiOlwiODAwMDBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCI3OTE5MVwifV19In0=", "deposit": "1", "method_name": "ft_transfer_call"}], "receiver_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1"}}, "description": "{\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0.2\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0.20009\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.596737869168e20 }, + }, + { + id: "8403872352", + receipt_id: "968brUo1NGES5tegFT3DRTXq5ob4MdXJDZT67Uko7zE7", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Axe1VffAkxmkAE4UcCMzEsbKSjRze4C8p5HYZ2BAbmmi", + block_height: 128262153, + block_timestamp: 1726575533144744400, + }, + receipt_outcome: { + gas_burnt: 4195238042989.0, + tokens_burnt: 4.195238042989e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FuUue5EH73MqbCMdtmNndefv1oHREYKvfCwSEYoyrzKz", + included_in_block_hash: "J5ae4wLNDEzMhyKR8RHdXWR8RcfzgMbTA3ey5bxufdBy", + block_timestamp: "1726575531898946741", + block: { block_height: 128262152 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.195238042989e20, + args: '{"id": 67, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.9808861933319e21 }, + }, + { + id: "8403872723", + receipt_id: "5oKHB2223n6usaWNEdbYqRjFYJLewLpJR6LYZjMQLrHP", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9DsbBfyQKiBnRQKqKrjK5xoyod3xdnQq4GNcPoYkZrUw", + block_height: 128262154, + block_timestamp: 1726575534436340200, + }, + receipt_outcome: { + gas_burnt: 3778988484630.0, + tokens_burnt: 3.7789884846300004e20, + executor_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + status: true, + }, + transaction_hash: "FuUue5EH73MqbCMdtmNndefv1oHREYKvfCwSEYoyrzKz", + included_in_block_hash: "J5ae4wLNDEzMhyKR8RHdXWR8RcfzgMbTA3ey5bxufdBy", + block_timestamp: "1726575531898946741", + block: { block_height: 128262152 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer_call", + deposit: 1.0, + fee: 3.7789884846300004e20, + args: '{"msg": "{\\\\\\\\\\\\\\"force\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\"actions\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":5118,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"20000\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4974,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":3716,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"19911\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":5118,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"10000\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4974,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":3879,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"9900\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4513,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"90000\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"89088\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4179,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"80000\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"79191\\\\\\\\\\\\\\"}]}", "amount": "200000", "receiver_id": "v2.ref-finance.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.9808861933319e21 }, + }, + { + id: "8403872727", + receipt_id: "7s4A9U4db1XRNcPCKk87GeLCN5p65oXLAysKKou9kW8m", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9DsbBfyQKiBnRQKqKrjK5xoyod3xdnQq4GNcPoYkZrUw", + block_height: 128262154, + block_timestamp: 1726575534436340200, + }, + receipt_outcome: { + gas_burnt: 3346042192034.0, + tokens_burnt: 3.346042192034e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FuUue5EH73MqbCMdtmNndefv1oHREYKvfCwSEYoyrzKz", + included_in_block_hash: "J5ae4wLNDEzMhyKR8RHdXWR8RcfzgMbTA3ey5bxufdBy", + block_timestamp: "1726575531898946741", + block: { block_height: 128262152 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.346042192034e20, + args: '{"proposal_id": 67}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.9808861933319e21 }, + }, + { + id: "8403873931", + receipt_id: "6zaYKJ3L9fmjQrVtuaXu1gEovtBu51FQFno6ZLvAiC4p", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4AZjoinx8GvD2U8dQ6igt19iBNR4t5p7qegyBPyrkHZ5", + block_height: 128262159, + block_timestamp: 1726575539938201000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "FuUue5EH73MqbCMdtmNndefv1oHREYKvfCwSEYoyrzKz", + included_in_block_hash: "J5ae4wLNDEzMhyKR8RHdXWR8RcfzgMbTA3ey5bxufdBy", + block_timestamp: "1726575531898946741", + block: { block_height: 128262152 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.9808861933319e21 }, + }, + { + id: "8433720001", + receipt_id: "4kSdPzgn7Md1skHMTb5FBvEbnwLWYZ1PRwSqe8rPJtrJ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "CputmdJ5Zf3cpkYDGXMNvGsPvM3VqdVBqwmozHgsPCFT", + block_height: 128334684, + block_timestamp: 1726660371233004800, + }, + receipt_outcome: { + gas_burnt: 3308586991588.0, + tokens_burnt: 3.308586991588e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GwBvyFTtNHA5b9PYYgYofDWU64hm5irMafdLtqZKDMGg", + included_in_block_hash: "9S3Rf7TXyEyytnjoiNR3ftYKQJmhkhsJAQ71fUmmPoEz", + block_timestamp: "1726660369890204336", + block: { block_height: 128334683 }, + receipt_conversion_tokens_burnt: "47061328443500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.308586991588e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "180000000000000", "args": "eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAiLCJtc2ciOiJ7XCJmb3JjZVwiOjAsXCJhY3Rpb25zXCI6W3tcInBvb2xfaWRcIjo1MTE4LFwidG9rZW5faW5cIjpcIjE3MjA4NjI4Zjg0ZjVkNmFkMzNmMGRhM2JiYmViMjdmZmNiMzk4ZWFjNTAxYTMxYmQ2YWQyMDExZTM2MTMzYTFcIixcInRva2VuX291dFwiOlwiNDM4ZTQ4ZWQ0Y2U2YmVlY2Y1MDNkNDNiOWRiZDNjMzBkNTE2ZTdmZC5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjYyNTAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6NDY5NSxcInRva2VuX2luXCI6XCI0MzhlNDhlZDRjZTZiZWVjZjUwM2Q0M2I5ZGJkM2MzMGQ1MTZlN2ZkLmZhY3RvcnkuYnJpZGdlLm5lYXJcIixcInRva2VuX291dFwiOlwiZGFjMTdmOTU4ZDJlZTUyM2EyMjA2MjA2OTk0NTk3YzEzZDgzMWVjNy5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6MzY4OSxcInRva2VuX2luXCI6XCJkYWMxN2Y5NThkMmVlNTIzYTIyMDYyMDY5OTQ1OTdjMTNkODMxZWM3LmZhY3RvcnkuYnJpZGdlLm5lYXJcIixcInRva2VuX291dFwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjYyMTAwXCJ9LHtcInBvb2xfaWRcIjo1MTE4LFwidG9rZW5faW5cIjpcIjE3MjA4NjI4Zjg0ZjVkNmFkMzNmMGRhM2JiYmViMjdmZmNiMzk4ZWFjNTAxYTMxYmQ2YWQyMDExZTM2MTMzYTFcIixcInRva2VuX291dFwiOlwiNDM4ZTQ4ZWQ0Y2U2YmVlY2Y1MDNkNDNiOWRiZDNjMzBkNTE2ZTdmZC5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjEyNTAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6NDYxMSxcInRva2VuX2luXCI6XCI0MzhlNDhlZDRjZTZiZWVjZjUwM2Q0M2I5ZGJkM2MzMGQ1MTZlN2ZkLmZhY3RvcnkuYnJpZGdlLm5lYXJcIixcInRva2VuX291dFwiOlwibmVhcm52aWRpYS5uZWFyXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6NDYzNCxcInRva2VuX2luXCI6XCJuZWFybnZpZGlhLm5lYXJcIixcInRva2VuX291dFwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjEyNDEzXCJ9LHtcInBvb2xfaWRcIjo0NTEyLFwidG9rZW5faW5cIjpcIjE3MjA4NjI4Zjg0ZjVkNmFkMzNmMGRhM2JiYmViMjdmZmNiMzk4ZWFjNTAxYTMxYmQ2YWQyMDExZTM2MTMzYTFcIixcInRva2VuX291dFwiOlwid3JhcC5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjEyNTAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6NDUzMCxcInRva2VuX2luXCI6XCJ3cmFwLm5lYXJcIixcInRva2VuX291dFwiOlwiYmVudGhlZG9nLm5lYXJcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIwXCJ9LHtcInBvb2xfaWRcIjo0Njc3LFwidG9rZW5faW5cIjpcImJlbnRoZWRvZy5uZWFyXCIsXCJ0b2tlbl9vdXRcIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIxMjQwNlwifSx7XCJwb29sX2lkXCI6NTExOCxcInRva2VuX2luXCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJ0b2tlbl9vdXRcIjpcIjQzOGU0OGVkNGNlNmJlZWNmNTAzZDQzYjlkYmQzYzMwZDUxNmU3ZmQuZmFjdG9yeS5icmlkZ2UubmVhclwiLFwiYW1vdW50X2luXCI6XCIxMjUwMFwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjBcIn0se1wicG9vbF9pZFwiOjQ1NDMsXCJ0b2tlbl9pblwiOlwiNDM4ZTQ4ZWQ0Y2U2YmVlY2Y1MDNkNDNiOWRiZDNjMzBkNTE2ZTdmZC5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJ0b2tlbl9vdXRcIjpcImRhYzE3Zjk1OGQyZWU1MjNhMjIwNjIwNjk5NDU5N2MxM2Q4MzFlYzcuZmFjdG9yeS5icmlkZ2UubmVhclwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjBcIn0se1wicG9vbF9pZFwiOjM2ODksXCJ0b2tlbl9pblwiOlwiZGFjMTdmOTU4ZDJlZTUyM2EyMjA2MjA2OTk0NTk3YzEzZDgzMWVjNy5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJ0b2tlbl9vdXRcIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIxMjM5NVwifV19In0=", "deposit": "1", "method_name": "ft_transfer_call"}], "receiver_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1"}}, "description": "{\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0.1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0.10032\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.779200276023e20 }, + }, + { + id: "8433767126", + receipt_id: "7cBedcGVj16euEy9YyAeSUjUHpc4oWxyPU5KVMwZ73DM", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BTmeUBhjL4WcZv2fRyFrVGwyPw3e4cHt13pT9wW8BCNM", + block_height: 128334792, + block_timestamp: 1726660498219905000, + }, + receipt_outcome: { + gas_burnt: 4252500120949.0, + tokens_burnt: 4.252500120949e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "8LvE58dnVkZqY1gomw7McuM4zLFCaJHhfVVa2e1r8YYG", + included_in_block_hash: "JCG4GiH8rMbGY7FiNA1hbQtTNjmUQj3qRRS7F5jmjRa6", + block_timestamp: "1726660497060417944", + block: { block_height: 128334791 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.252500120949e20, + args: '{"id": 68, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.1438691736727e21 }, + }, + { + id: "8433768057", + receipt_id: "CdX3Mm8VXTjG3Z1watHJ5Vceq1kbLhVuTZiSC4Y2dr6U", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Dgm6oAobpYwi4Z2MaFrfmFA6uyoqp6xsafbGHTdNbVZW", + block_height: 128334793, + block_timestamp: 1726660499369182700, + }, + receipt_outcome: { + gas_burnt: 3882410888850.0, + tokens_burnt: 3.88241088885e20, + executor_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + status: true, + }, + transaction_hash: "8LvE58dnVkZqY1gomw7McuM4zLFCaJHhfVVa2e1r8YYG", + included_in_block_hash: "JCG4GiH8rMbGY7FiNA1hbQtTNjmUQj3qRRS7F5jmjRa6", + block_timestamp: "1726660497060417944", + block: { block_height: 128334791 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer_call", + deposit: 1.0, + fee: 3.88241088885e20, + args: '{"msg": "{\\\\\\\\\\\\\\"force\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\"actions\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":5118,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"62500\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4695,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"dac17f958d2ee523a2206206994597c13d831ec7.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":3689,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"dac17f958d2ee523a2206206994597c13d831ec7.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"62100\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":5118,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"12500\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4611,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"nearnvidia.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4634,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"nearnvidia.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"12413\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4512,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"12500\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4530,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"benthedog.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4677,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"benthedog.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"12406\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":5118,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"12500\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":4543,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"dac17f958d2ee523a2206206994597c13d831ec7.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\":3689,\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"dac17f958d2ee523a2206206994597c13d831ec7.factory.bridge.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"12395\\\\\\\\\\\\\\"}]}", "amount": "100000", "receiver_id": "v2.ref-finance.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.1438691736727e21 }, + }, + { + id: "8433768061", + receipt_id: "UYL36SjfBHayu6WuvhLthiX6KQaip1GWeuFTp52NQQX", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Dgm6oAobpYwi4Z2MaFrfmFA6uyoqp6xsafbGHTdNbVZW", + block_height: 128334793, + block_timestamp: 1726660499369182700, + }, + receipt_outcome: { + gas_burnt: 3447433618040.0, + tokens_burnt: 3.44743361804e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "8LvE58dnVkZqY1gomw7McuM4zLFCaJHhfVVa2e1r8YYG", + included_in_block_hash: "JCG4GiH8rMbGY7FiNA1hbQtTNjmUQj3qRRS7F5jmjRa6", + block_timestamp: "1726660497060417944", + block: { block_height: 128334791 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.44743361804e20, + args: '{"proposal_id": 68}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.1438691736727e21 }, + }, + { + id: "8433771425", + receipt_id: "7sfB4x1VgC4zo8RK2Ws26oMF5J8gQBDd4wrBt7zrr9u9", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "51GyGDFzwUAW8pqEH78xFY86eRGcftoEdig3PcCQeU2C", + block_height: 128334797, + block_timestamp: 1726660504035235000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "8LvE58dnVkZqY1gomw7McuM4zLFCaJHhfVVa2e1r8YYG", + included_in_block_hash: "JCG4GiH8rMbGY7FiNA1hbQtTNjmUQj3qRRS7F5jmjRa6", + block_timestamp: "1726660497060417944", + block: { block_height: 128334791 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.1438691736727e21 }, + }, + { + id: "8817043359", + receipt_id: "6ezWQBa3qsJQCTRR5BkFcqwEFdyDnbZijWNhQtReWWuQ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8apYRpgWZyRdhGtVU52mrfMv4zzR4f5XfV48SYeYQ8FY", + block_height: 129299774, + block_timestamp: 1727769816043542300, + }, + receipt_outcome: { + gas_burnt: 2888780013324.0, + tokens_burnt: 2.8887800133240003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HbvHDycguVVSpH1NjqMjsQeVTsZY1UKNyWAwt1drnT5e", + included_in_block_hash: "JDPo1h4khotWmoF1N275KWZoYFdTzbm8as1K6BXTmbUR", + block_timestamp: "1727769814898184437", + block: { block_height: 129299773 }, + receipt_conversion_tokens_burnt: "32751445572000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8887800133240003e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "800000000000000000000000000", "token_id": "", "receiver_id": "9bd73bc9ba6ff289e2deb597dd6fe83dc0056af7a2937d6dec119660ba0146a4"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Fin Ops 08/26/2024 - 08/30/2024\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Oversee that proposals flow thru the payment process efficiently. Continuously improve upon the process.\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":209}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.216294469044e20 }, + }, + { + id: "8904810154", + receipt_id: "ANShd28bV8Zk6GY5jufKP2RBA51RWckGgfpQEsLBdv4C", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GFUUck2NY2B6JGX5aHAHdwmV7KJ2PPzFKTzazqNqHHp7", + block_height: 129534496, + block_timestamp: 1728032802028789000, + }, + receipt_outcome: { + gas_burnt: 1639433681489.0, + tokens_burnt: 1.639433681489e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "9cVZiYprV3trttFMfc3y6jg6EvwnbAdTGqfaGqFqmfaT", + included_in_block_hash: "pZQ5PbDGTzZu7QVfuLuELCzyhpTQEPJrU2yb6NAU7hg", + block_timestamp: "1728032800840855039", + block: { block_height: 129534495 }, + receipt_conversion_tokens_burnt: "32203082849500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.639433681489e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": {"gas": 200000000000000, "args": {}, "deposit": "1000000000000000000000000", "method_name": "deposit_and_stake"}, "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing NEAR staked tokens\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 1.961464509984e20 }, + }, + { + id: "8904834902", + receipt_id: "H6Xp1nhkm5XzpHzGNHykeEgdf5cUmPCZ8AzfSzaurCiP", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7Mbx3U3uNu7w2M7GiSdMC15xm4TSwCGgaCzfwoAihfsF", + block_height: 129534546, + block_timestamp: 1728032858789898800, + }, + receipt_outcome: { + gas_burnt: 1637823365537.0, + tokens_burnt: 1.637823365537e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "7Uj3n1eAGL8oZ7jNjNx4ifWQv5i1uDRt5JnavBcNc8Tq", + included_in_block_hash: "8FKUnjMxBXfaYnCxcRpFFEack1yPHHeBXrNnnr7siHdu", + block_timestamp: "1728032857652711177", + block: { block_height: 129534545 }, + receipt_conversion_tokens_burnt: "32145862391500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.637823365537e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": {"gas": 200000000000000, "args": "", "deposit": "1000000000000000000000000", "method_name": "deposit_and_stake"}, "receiver_id": "zavodil.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"testing NEAR staking\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 1.959281989452e20 }, + }, + { + id: "8904880008", + receipt_id: "D778j6moToQRaDvArbrkRrNY6qzTMk7qD63eTqqHxtk2", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8TXen38rtgC6LiJFetGFmz36jfMxCpaYizeMooFSvNWD", + block_height: 129534645, + block_timestamp: 1728032967670921200, + }, + receipt_outcome: { + gas_burnt: 1672370566685.0, + tokens_burnt: 1.672370566685e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "DARxwWtdEzEEKRFhGp2TiEaMEHZxiPNuaNhUDxu5LJW4", + included_in_block_hash: "61NGXeuw8Jb9mAaq2FXiN4wsgbuUEBi48RdyPTzSLQ5v", + block_timestamp: "1728032966702737264", + block: { block_height: 129534644 }, + receipt_conversion_tokens_burnt: "32160167506000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.672370566685e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": 200000000000000, "args": "", "deposit": "1000000000000000000000000", "method_name": "deposit_and_stake"}], "receiver_id": "zavodil.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing Stake Request\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 1.993972241745e20 }, + }, + { + id: "8904890660", + receipt_id: "65QoRdb8cYX2ms1WvqwTfks2dzD9e8H9pNB5PZhoAiyu", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6NFGFiAjTAfS9sBs4BejyUa6z7UevXumxcme5KWQmvmU", + block_height: 129534692, + block_timestamp: 1728033017194722000, + }, + receipt_outcome: { + gas_burnt: 2931489797108.0, + tokens_burnt: 2.9314897971079997e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2pWWDjGPf5n7QsT1mqDEgtXL1Yxv3FTQyL5upgZF7Tv8", + included_in_block_hash: "rufb1kkCRKF3y2Yy9FAzPfSoGGLYYnFspGHwuxNxswf", + block_timestamp: "1728033016160599120", + block: { block_height: 129534691 }, + receipt_conversion_tokens_burnt: "32160167506000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.9314897971079997e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "", "deposit": "1000000000000000000000000", "method_name": "deposit_and_stake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing Stake\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.253091472168e20 }, + }, + { + id: "8906332216", + receipt_id: "AmNCpU9vcmPk3o2jofbNDyBCKamGC1xAZ1BFYmQxqcS3", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "G6zbVb6zUyoLt6MTEMynYnu64LkbceTQrQPmxbrRdK59", + block_height: 129538501, + block_timestamp: 1728037187249498600, + }, + receipt_outcome: { + gas_burnt: 2698484610174.0, + tokens_burnt: 2.6984846101740002e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "HukgW7TYgAh7qyeUf3BwEZyahxFkUgpXomQFxNUpFgwa", + included_in_block_hash: "A1Q7u4ZkHgwnT4mxhL2mPvPDiExRSLLhFR8vyNJ5EsU2", + block_timestamp: "1728037186225101040", + block: { block_height: 129538500 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.6984846101740002e20, + args: '{"id": 70, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 3.0086421936339996e20 }, + }, + { + id: "8906344972", + receipt_id: "hjtiEXqnRk2F8scvAdrRp3n8TxC8GHVAcuic5vXsKMK", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4wxEUiyQFRYHYL9UPnnWGXnBfgUaUx1QQ1qGavR37LhF", + block_height: 129538545, + block_timestamp: 1728037236318885000, + }, + receipt_outcome: { + gas_burnt: 3862193325449.0, + tokens_burnt: 3.862193325449e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9wwxAdF48RmTQicP2irq8fCDvVqwtEL9AUgSroEvPPhS", + included_in_block_hash: "EAZxNkaYVcCHKPXaPbVMWLypsVBg9Dg3QUXnj83PdyfY", + block_timestamp: "1728037235108050335", + block: { block_height: 129538544 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.862193325449e20, + args: '{"id": 70, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.3201643640798e21 }, + }, + { + id: "8906345319", + receipt_id: "22VL4pfwHGmeFgrTWqDQVnZFVSK6HVFVKDZVnCj3VFtC", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "astro-stakers.poolv1.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HRpy3U2HaH6UvJKMBRczJfwirxTfM119MXqBvGcTZxPa", + block_height: 129538546, + block_timestamp: 1728037237358404900, + }, + receipt_outcome: { + gas_burnt: 3717157021823.0, + tokens_burnt: 3.717157021823e20, + executor_account_id: "astro-stakers.poolv1.near", + status: true, + }, + transaction_hash: "9wwxAdF48RmTQicP2irq8fCDvVqwtEL9AUgSroEvPPhS", + included_in_block_hash: "EAZxNkaYVcCHKPXaPbVMWLypsVBg9Dg3QUXnj83PdyfY", + block_timestamp: "1728037235108050335", + block: { block_height: 129538544 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "deposit_and_stake", + deposit: 1e24, + fee: 3.717157021823e20, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.3201643640798e21 }, + }, + { + id: "8906345324", + receipt_id: "D11apbLT47h4fs5mwk5gJ9v4mK8LsEJ25HdnpGMHRcp2", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HRpy3U2HaH6UvJKMBRczJfwirxTfM119MXqBvGcTZxPa", + block_height: 129538546, + block_timestamp: 1728037237358404900, + }, + receipt_outcome: { + gas_burnt: 3200987059568.0, + tokens_burnt: 3.200987059568e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9wwxAdF48RmTQicP2irq8fCDvVqwtEL9AUgSroEvPPhS", + included_in_block_hash: "EAZxNkaYVcCHKPXaPbVMWLypsVBg9Dg3QUXnj83PdyfY", + block_timestamp: "1728037235108050335", + block: { block_height: 129538544 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.200987059568e20, + args: '{"proposal_id": 70}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.3201643640798e21 }, + }, + { + id: "8906345733", + receipt_id: "FHs6KThY6ZsKMLmYyxCea4oLKgWS98NnyDpdSzMq2U8p", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BBQyCF2UmZFEwAcZxdQQherYrBzTfBvVHPbPsqwerFzZ", + block_height: 129538548, + block_timestamp: 1728037239352034000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "9wwxAdF48RmTQicP2irq8fCDvVqwtEL9AUgSroEvPPhS", + included_in_block_hash: "EAZxNkaYVcCHKPXaPbVMWLypsVBg9Dg3QUXnj83PdyfY", + block_timestamp: "1728037235108050335", + block: { block_height: 129538544 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.3201643640798e21 }, + }, + { + id: "8937242113", + receipt_id: "GTteAN6QVNYUnpxfcJBNLfV5h3CdRLi67YQaQi8XhK6U", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6yuaBefY78J6EjWjTj9XvB6MQzsJcSh9wEpaYCkpumMN", + block_height: 129619264, + block_timestamp: 1728126260433022200, + }, + receipt_outcome: { + gas_burnt: 1673209327993.0, + tokens_burnt: 1.6732093279929998e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "5wHoeLanFjMhQETsr4BxAwYZVF6RKR4E5hLYnst3xGwF", + included_in_block_hash: "7BPRPQrGTVqtYpLVhVGQxRtcFbGQPtqm3XsRBCdoXRUR", + block_timestamp: "1728126259240819771", + block: { block_height: 129619263 }, + receipt_conversion_tokens_burnt: "32212619592500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.6732093279929998e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": 200000000000000, "args": "eyJhbW91bnQiOiI1MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==", "deposit": "0", "method_name": "unstake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing \\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 1.9953355239180003e20 }, + }, + { + id: "8937251240", + receipt_id: "6LyiPTHrBr7tDqFZZeU8QHAPgJwGK1F2SJ3s7mbnfT7a", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "JCiQ1XK8KXLgghy5P1P9faYK9CvvLgP2dxUESjBoD8t2", + block_height: 129619294, + block_timestamp: 1728126292733602300, + }, + receipt_outcome: { + gas_burnt: 2878572597700.0, + tokens_burnt: 2.8785725976999998e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FAkkKAAo6ddbkY27RTGubXUUUxmbN2CqNpfTBqwsZBKf", + included_in_block_hash: "5p7PRmExEsTFndqupgbsrJd6minrp2PysJin7YVbVzCM", + block_timestamp: "1728126291678533139", + block: { block_height: 129619293 }, + receipt_conversion_tokens_burnt: "32255534936000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8785725976999998e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJhbW91bnQiOiItMjAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMCJ9", "deposit": "0", "method_name": "unstake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"testing unstake\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.2011279470599995e20 }, + }, + { + id: "8937339224", + receipt_id: "Cai7FFJef74NQedks3rpH7uXdhXEEZvWbdprYmwmnmZK", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FX6B2RC26T2oyCKETxhHH7PbEVHjaWyQq9GA1vqhDwzq", + block_height: 129619527, + block_timestamp: 1728126551355160600, + }, + receipt_outcome: { + gas_burnt: 2850748796800.0, + tokens_burnt: 2.8507487968e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HMFEPCfMpJmm4Xkspkmd1qmjFL7aMC9SpsorEtKHqBFH", + included_in_block_hash: "v5ZHHFquSqQQdQy2UG7dsrWr6Y5294ZnEsu7JDwN4Hq", + block_timestamp: "1728126550250443223", + block: { block_height: 129619526 }, + receipt_conversion_tokens_burnt: "32255534936000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8507487968e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJhbW91bnQiOiI1MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==", "deposit": "0", "method_name": "unstake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"testing unstake\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.17330414616e20 }, + }, + { + id: "8937536923", + receipt_id: "8ygKGckGXhv3ufQ4WnDDnuALmSuWA5JTt5yE43oioVaw", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2cTH7irZuaHMtkefjMT32pjUfvmd8CTUPpAmDV6zimkC", + block_height: 129620053, + block_timestamp: 1728127124484624600, + }, + receipt_outcome: { + gas_burnt: 3814430136053.0, + tokens_burnt: 3.8144301360530004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AEntDzfPQmebvqRrg3CNkxErYFWUi7t5VSALRoFZHmjp", + included_in_block_hash: "5EaxMNR3xS6BKJY3FJ2uE8ZUfB2fXg8tVYBnLkY8Wuvf", + block_timestamp: "1728127123398922174", + block: { block_height: 129620052 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.8144301360530004e20, + args: '{"id": 72, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2442953968769e21 }, + }, + { + id: "8937537179", + receipt_id: "6aiZbkbBELd5FFKXQj8DK6NXGQMw2CzcyKpYHyj9HE77", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "astro-stakers.poolv1.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6yvbBVv5GJGbKhZgUkm2zkWWGMUH8H8NrEE7jFe1ArcV", + block_height: 129620054, + block_timestamp: 1728127125350084400, + }, + receipt_outcome: { + gas_burnt: 3125149341044.0, + tokens_burnt: 3.125149341044e20, + executor_account_id: "astro-stakers.poolv1.near", + status: true, + }, + transaction_hash: "AEntDzfPQmebvqRrg3CNkxErYFWUi7t5VSALRoFZHmjp", + included_in_block_hash: "5EaxMNR3xS6BKJY3FJ2uE8ZUfB2fXg8tVYBnLkY8Wuvf", + block_timestamp: "1728127123398922174", + block: { block_height: 129620052 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "unstake", + deposit: 0.0, + fee: 3.125149341044e20, + args: '{"amount": "500000000000000000000000"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2442953968769e21 }, + }, + { + id: "8937537183", + receipt_id: "G6c4qnFMRTEQuUkw81RqiZCw9ZT4py6P71GiSztr2Knj", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6yvbBVv5GJGbKhZgUkm2zkWWGMUH8H8NrEE7jFe1ArcV", + block_height: 129620054, + block_timestamp: 1728127125350084400, + }, + receipt_outcome: { + gas_burnt: 3151178037344.0, + tokens_burnt: 3.151178037344e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AEntDzfPQmebvqRrg3CNkxErYFWUi7t5VSALRoFZHmjp", + included_in_block_hash: "5EaxMNR3xS6BKJY3FJ2uE8ZUfB2fXg8tVYBnLkY8Wuvf", + block_timestamp: "1728127123398922174", + block: { block_height: 129620052 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.151178037344e20, + args: '{"proposal_id": 72}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2442953968769e21 }, + }, + { + id: "8937537619", + receipt_id: "7RKwAaXjKT3jvw3GwQuUaq63KztWQDF3pQ7c4Q7G33x1", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "86xkC8Rrf5t8t9Faxw4P17qB1Bh1RCC4zj7LR9HbPQXe", + block_height: 129620056, + block_timestamp: 1728127127617511200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "AEntDzfPQmebvqRrg3CNkxErYFWUi7t5VSALRoFZHmjp", + included_in_block_hash: "5EaxMNR3xS6BKJY3FJ2uE8ZUfB2fXg8tVYBnLkY8Wuvf", + block_timestamp: "1728127123398922174", + block: { block_height: 129620052 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2442953968769e21 }, + }, + { + id: "9034842102", + receipt_id: "9FEcMry8g9C6nHoWfgF927cwG1Q1Zu1nWULAeNRoYFTk", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6iyepA9RRDnS1waqCrjewUHKeLxwcpER58tWR5qS4woQ", + block_height: 129849233, + block_timestamp: 1728384666188444200, + }, + receipt_outcome: { + gas_burnt: 2932014697912.0, + tokens_burnt: 2.932014697912e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HoHToSWC2Tw8bzK6cDaZpW4Serv4UtvpW5bbQNPzxz4U", + included_in_block_hash: "wGeupmi6g686iJ6nDESdpJV7EWD8vMLa3PK68P69Yvy", + block_timestamp: "1728384665120547723", + block: { block_height: 129849232 }, + receipt_conversion_tokens_burnt: "32184009363500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.932014697912e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJhbW91bnQiOiIyMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==", "deposit": "0", "method_name": "unstake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.253854791547e20 }, + }, + { + id: "9034856944", + receipt_id: "FVELnfTc6hysc8VgmEpzFfCa5mWXxJXSYpExGprr5hzJ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HDD7JGBaVzMQFRGFyFvhtdoj2pVp7duvDfqRiKNTHPkL", + block_height: 129849268, + block_timestamp: 1728384703884835800, + }, + receipt_outcome: { + gas_burnt: 3785106465845.0, + tokens_burnt: 3.785106465845e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GVrXNrny6vXm33KEy8DHsZwgBjFzBh2aJTss4dsg6Nrz", + included_in_block_hash: "DNu2M8Ytdbz71B6Qjy4pon5fENBNRZSpJNvEHjTG3aBS", + block_timestamp: "1728384702737677009", + block: { block_height: 129849267 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.785106465845e20, + args: '{"id": 73, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2463757283273e21 }, + }, + { + id: "9034857559", + receipt_id: "D9m7mDYpgc8F7Y7Ss7UDCT5ATG8AEf45Pxax8m23aAfp", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "astro-stakers.poolv1.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7j8a6Nv8LmZecgDhC2i5ttqansX4K1jJQ34ywCNTHUZi", + block_height: 129849269, + block_timestamp: 1728384705170014500, + }, + receipt_outcome: { + gas_burnt: 3121661678360.0, + tokens_burnt: 3.12166167836e20, + executor_account_id: "astro-stakers.poolv1.near", + status: true, + }, + transaction_hash: "GVrXNrny6vXm33KEy8DHsZwgBjFzBh2aJTss4dsg6Nrz", + included_in_block_hash: "DNu2M8Ytdbz71B6Qjy4pon5fENBNRZSpJNvEHjTG3aBS", + block_timestamp: "1728384702737677009", + block: { block_height: 129849267 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "unstake", + deposit: 0.0, + fee: 3.12166167836e20, + args: '{"amount": "200000000000000000000000"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2463757283273e21 }, + }, + { + id: "9034857567", + receipt_id: "25fijC9gaipYvrTVjjVdFf3LcHkciMKBspHrG1YSYWPk", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7j8a6Nv8LmZecgDhC2i5ttqansX4K1jJQ34ywCNTHUZi", + block_height: 129849269, + block_timestamp: 1728384705170014500, + }, + receipt_outcome: { + gas_burnt: 3204792684740.0, + tokens_burnt: 3.20479268474e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GVrXNrny6vXm33KEy8DHsZwgBjFzBh2aJTss4dsg6Nrz", + included_in_block_hash: "DNu2M8Ytdbz71B6Qjy4pon5fENBNRZSpJNvEHjTG3aBS", + block_timestamp: "1728384702737677009", + block: { block_height: 129849267 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.20479268474e20, + args: '{"proposal_id": 73}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2463757283273e21 }, + }, + { + id: "9034858720", + receipt_id: "BfvLnULTQih7BRapw7WCZBiaMUhFDJSJHW56DMHWbNvG", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2PLCKLQFDF9yPTCmeqNFFzKsA1yy97UJxzkQg6FrX9EZ", + block_height: 129849271, + block_timestamp: 1728384707540473000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "GVrXNrny6vXm33KEy8DHsZwgBjFzBh2aJTss4dsg6Nrz", + included_in_block_hash: "DNu2M8Ytdbz71B6Qjy4pon5fENBNRZSpJNvEHjTG3aBS", + block_timestamp: "1728384702737677009", + block: { block_height: 129849267 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2463757283273e21 }, + }, + { + id: "9098169180", + receipt_id: "9xLiGotHh3vickN7rSzk3MYQmHsYtp578ovUN9Y5yNHL", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ENLbQFP7zKQgAD9kVMTEqd3uqySwziENn1VYCTEYkjHN", + block_height: 130001369, + block_timestamp: 1728555954984981800, + }, + receipt_outcome: { + gas_burnt: 3041662946609.0, + tokens_burnt: 3.041662946609e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EKJmtUGWTiveUaVfQss3eZGzUeY9b7fm1TxX1JgNT8jH", + included_in_block_hash: "7cHzcuREcbrLooL64Uu4GGjRfoXGVr8LVU9Rm8xvpnpL", + block_timestamp: "1728555954067101917", + block: { block_height: 130001368 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.041662946609e20, + args: '{"id": 56, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.351820530069e20 }, + }, + { + id: "9105375593", + receipt_id: "Ar7wCDfjkn24rRYz7xuBaynKhHnqBY7jUTrfUxzvUbK4", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7XoLNhvYwYVPvtUfjzMseoMTrWJgjZKCtWxRntuwdpAi", + block_height: 130020067, + block_timestamp: 1728576955930131000, + }, + receipt_outcome: { + gas_burnt: 4515667730000.0, + tokens_burnt: 4.51566773e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "B3dgGSQsU8wPv8tnLtzs6pYTBFrUADXjdnz2Dgi9LPot", + included_in_block_hash: "5QAQBjGGH4F1cj4JdVhx943edgZUftVmfg51XXSL32sb", + block_timestamp: "1728576954798847030", + block: { block_height: 130020066 }, + receipt_conversion_tokens_burnt: "49111728188500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 4.51566773e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "petersalomonsen.near", "thomasguntenaar.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "megha19.near", "theori.near", "thomasguntenaar.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["treasurytestuserledger.near", "megha19.near", "petersalomonsen.near", "test03.near", "test05.near", "tfdevhub.near", "theori.near", "thomasguntenaar.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.006785011885e20 }, + }, + { + id: "9105376302", + receipt_id: "C8upPuCyDtTLRChRiyMDKLKJrFtw3fboKgxcqqi9BTUH", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Hz4WnztCjDxFSUNjhctsp9cBr2tCzVSyEL9JHg3kAnec", + block_height: 130020070, + block_timestamp: 1728576959510631200, + }, + receipt_outcome: { + gas_burnt: 4867712996819.0, + tokens_burnt: 4.8677129968190004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GsTfZ7Fy38PirviFEcE3nWXSYFj1xGkgskcfDspbCtPC", + included_in_block_hash: "3a1UA15QWHmW18JSf7sox6U2L4fsvKX4WahHbBZ2G7d8", + block_timestamp: "1728576958335171470", + block: { block_height: 130020069 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.8677129968190004e20, + args: '{"id": 74, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.4010531427789996e20 }, + }, + { + id: "9105376655", + receipt_id: "8MocuhoyGP7yJzvAn65FwCFiYFYSfFdXoNPi5k9iRnzL", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5TVxaY57QzdAXgPD7NxVmpSGatzDA4wAf7wDLhP2xmwE", + block_height: 130020071, + block_timestamp: 1728576960465367000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "GsTfZ7Fy38PirviFEcE3nWXSYFj1xGkgskcfDspbCtPC", + included_in_block_hash: "3a1UA15QWHmW18JSf7sox6U2L4fsvKX4WahHbBZ2G7d8", + block_timestamp: "1728576958335171470", + block: { block_height: 130020069 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.4010531427789996e20 }, + }, + { + id: "9123930443", + receipt_id: "BcBwC9y6kBm3AgVrnMaMdmSfcaDjnz2wNeMnmWNHA46s", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "P79JnmsUaxmXxRG7CjuMAuf6GdnAVvNP2UswVbBc5ZT", + block_height: 130068564, + block_timestamp: 1728630870869660400, + }, + receipt_outcome: { + gas_burnt: 2852179184884.0, + tokens_burnt: 2.8521791848839997e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Hi73nDqb6fAPk9bK2jrCbLXfavkr5AJ9Kb61ZnFWRCYi", + included_in_block_hash: "B4rBJR3y85HWkHHseGsYC2pNtTHxzGznb1rpV2LedYEt", + block_timestamp: "1728630869914707412", + block: { block_height: 130068563 }, + receipt_conversion_tokens_burnt: "31769161043000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8521791848839997e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "100000000000000000000000", "token_id": "", "receiver_id": "petersalomonsen.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"a\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"b\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.169870795314e20 }, + }, + { + id: "9125566014", + receipt_id: "DjD5Dcfid7e3z8RRyvf57tidCH3H2Pnex3wfUrz522k6", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "81Fk85iQNvz1p3zN6CwmfXQc2qaQvt3s3pd5SMjyQWfx", + block_height: 130072708, + block_timestamp: 1728635434145697500, + }, + receipt_outcome: { + gas_burnt: 3023866099925.0, + tokens_burnt: 3.023866099925e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GQNUHMpDCeAXViPY78efLYBTuauWxUpjRU8WqTqm1uNZ", + included_in_block_hash: "9NosrfGSKmesURENmUejaUmhuVbLtbYmgnNWF7CoL7KR", + block_timestamp: "1728635433138615195", + block: { block_height: 130072707 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.023866099925e20, + args: '{"id": 60, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.334023683385e20 }, + }, + { + id: "9125577623", + receipt_id: "9MXDQExY8J1MiyNGyNh7k6K45i2ju6n8PqzDhiXJDecd", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BJqHP963sSV1CzuHCztXyZgA43ARvXkyjUa5iKwtzvME", + block_height: 130072744, + block_timestamp: 1728635471475442200, + }, + receipt_outcome: { + gas_burnt: 3353991221920.0, + tokens_burnt: 3.35399122192e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BHNVxbeJH5XdehoHpzCr8Bsw5GwKR97WzdG5jexsnFcG", + included_in_block_hash: "44Tzhgb5F8eXmcKEbs7EHRri3a9UEPwsgrrvC9E2qGTB", + block_timestamp: "1728635471475442095", + block: { block_height: 130072743 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.35399122192e20, + args: '{"id": 75, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.887283684165e20 }, + }, + { + id: "9125577995", + receipt_id: "DfRR9aKmo99p5qPGG4H44nJGuv5TxbtQNQvsxWNyboQS", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ApXGm6AHyJxGSNpSGZU4xBAfpF7PXc25qdFeZ4fo1Q8N", + block_height: 130072745, + block_timestamp: 1728635473444620300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "BHNVxbeJH5XdehoHpzCr8Bsw5GwKR97WzdG5jexsnFcG", + included_in_block_hash: "44Tzhgb5F8eXmcKEbs7EHRri3a9UEPwsgrrvC9E2qGTB", + block_timestamp: "1728635471475442095", + block: { block_height: 130072743 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.887283684165e20 }, + }, + { + id: "9125590412", + receipt_id: "HzYjXbtQuzkNarEdxkcTKiDoPbYrtCWY5oiDu6xrBtqG", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "58DLtA2ZvKVb2QYLTStSTrH2yYdTdWpCn2vnpBDLEfut", + block_height: 130072788, + block_timestamp: 1728635519562545700, + }, + receipt_outcome: { + gas_burnt: 2937181520692.0, + tokens_burnt: 2.937181520692e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5iwVZ4CVSNUVatUZz8sejjoU2sTiQk1MBCse4DyZBKd5", + included_in_block_hash: "25ThXzEitN664DktsUtssK4ssgX178b1ptHHvnVwk72Z", + block_timestamp: "1728635518379860289", + block: { block_height: 130072787 }, + receipt_conversion_tokens_burnt: "32012347989500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.937181520692e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "petersalomonsen.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.257305000587e20 }, + }, + { + id: "9125592899", + receipt_id: "Dr31WFthscEZokSb9jyjeufX79ir9Zj8rJzSt748orjF", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DdmUpByMUHDNKPgsqiSXSyaQeEXFe5qcJXP8jSY28Wgx", + block_height: 130072797, + block_timestamp: 1728635529422327600, + }, + receipt_outcome: { + gas_burnt: 3915772600201.0, + tokens_burnt: 3.915772600201e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5Zy4LE5c4aVq3H7qEsLmDE8DaTi3KrogAgbqCTi9LhYt", + included_in_block_hash: "9Bf3Nq7ypCuMtDZXKJ8BBzMdmbxmGdCCEzKdvEvHzyRu", + block_timestamp: "1728635528288555824", + block: { block_height: 130072796 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.915772600201e20, + args: '{"id": 76, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0356975844783e21 }, + }, + { + id: "9125593312", + receipt_id: "2y5p6cUvjofo8SEEhAdPBkVhV3cAvKufYsFuS3u3smkz", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EjYFp8jfEV79w1C6NWgHMesnxZ5QsB2tGCk1Abek6xYP", + block_height: 130072798, + block_timestamp: 1728635530336110300, + }, + receipt_outcome: { + gas_burnt: 2748692091486.0, + tokens_burnt: 2.7486920914860003e20, + executor_account_id: + "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", + status: true, + }, + transaction_hash: "5Zy4LE5c4aVq3H7qEsLmDE8DaTi3KrogAgbqCTi9LhYt", + included_in_block_hash: "9Bf3Nq7ypCuMtDZXKJ8BBzMdmbxmGdCCEzKdvEvHzyRu", + block_timestamp: "1728635528288555824", + block: { block_height: 130072796 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "ft_transfer", + deposit: 1.0, + fee: 2.7486920914860003e20, + args: '{"memo": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}", "amount": "10000", "receiver_id": "petersalomonsen.near"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0356975844783e21 }, + }, + { + id: "9125593314", + receipt_id: "7t9BWUtbmN9j1wfqzmUhs8EqM5v9ho6HuRXB6tkKs4uy", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EjYFp8jfEV79w1C6NWgHMesnxZ5QsB2tGCk1Abek6xYP", + block_height: 130072798, + block_timestamp: 1728635530336110300, + }, + receipt_outcome: { + gas_burnt: 3159171007136.0, + tokens_burnt: 3.159171007136e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5Zy4LE5c4aVq3H7qEsLmDE8DaTi3KrogAgbqCTi9LhYt", + included_in_block_hash: "9Bf3Nq7ypCuMtDZXKJ8BBzMdmbxmGdCCEzKdvEvHzyRu", + block_timestamp: "1728635528288555824", + block: { block_height: 130072796 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.159171007136e20, + args: '{"proposal_id": 76}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0356975844783e21 }, + }, + { + id: "9125593760", + receipt_id: "By3541br6QVU7nA8dSBsFPX6qhsBhyTRC72E7GgA9C35", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8PhrtyQSLDpUJFGxQLvz7LAL8opUztEa38QQjb9VvAZd", + block_height: 130072800, + block_timestamp: 1728635532755984400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "5Zy4LE5c4aVq3H7qEsLmDE8DaTi3KrogAgbqCTi9LhYt", + included_in_block_hash: "9Bf3Nq7ypCuMtDZXKJ8BBzMdmbxmGdCCEzKdvEvHzyRu", + block_timestamp: "1728635528288555824", + block: { block_height: 130072796 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.0356975844783e21 }, + }, + { + id: "9125738321", + receipt_id: "9mRD3U54NV3GKHnvsgq25ZsbYNYTibgLSCyAdpspbYzm", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BasdssRQNBDav9bMgKbo9Vpa5XAbveZyRwv1onpXHvzo", + block_height: 130073050, + block_timestamp: 1728635809729320400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "613Wrx6s6LgTXhTDGEAMM3N17C4S2CF58MinHQBxtNkP", + included_in_block_hash: "DRVQ3Syog8zfcVkYeZ3fkMUDtd86RAqsWRUmQ2bGw7sw", + block_timestamp: "1728635808834010811", + block: { block_height: 130073049 }, + receipt_conversion_tokens_burnt: "22318256250000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 5e22, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 5e22 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.46365125e19 }, + }, + { + id: "9126047775", + receipt_id: "J4c6riZyfWCGyEou8hfmQpvwbHKtEvNiF9FMjPrTGtGw", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ArbGjCdWaz9QvAt8K9JLC5tash2jFhkZxs2CQ5SKfn5", + block_height: 130073810, + block_timestamp: 1728636641974632200, + }, + receipt_outcome: { + gas_burnt: 2868867801708.0, + tokens_burnt: 2.8688678017080004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4xTJnWcJrg5E1cZkbeMGD72ay7esaqAny794vRS51z8b", + included_in_block_hash: "jX3ydGNSRbmMbsLVKuvmHkzWjCAQroSr2FgeNeF3jMH", + block_timestamp: "1728636640631093246", + block: { block_height: 130073809 }, + receipt_conversion_tokens_burnt: "32451038167500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8688678017080004e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "50000000000000000000000", "token_id": "", "receiver_id": "petersalomonsen.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Refund 0,05 NEAR\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"I sent 0.05 NEAR to the treasury. Asking to get it back.\\\\\\\\\\\\\\\\nhttps://nearblocks.io/txns/613Wrx6s6LgTXhTDGEAMM3N17C4S2CF58MinHQBxtNkP\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.193378183383e20 }, + }, + { + id: "9126052752", + receipt_id: "7k5qPRvEAu18gEXchJQdRZfiDHAjhHX2PseCYYZNNfHx", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "CM9dRHmxyQDnQp83r8BqYXHt7BE1fsGcJWCojWqgkevC", + block_height: 130073824, + block_timestamp: 1728636657584203800, + }, + receipt_outcome: { + gas_burnt: 3743102735509.0, + tokens_burnt: 3.743102735509e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "368Qjndm5c3sx6pduCFwisR3LFPvRB99JSkxo5YHeszE", + included_in_block_hash: "F6AG1LFesLQtChpA56tDGsfMKMAjbxmJTs5PCNRJx1pv", + block_timestamp: "1728636656426856660", + block: { block_height: 130073823 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.743102735509e20, + args: '{"id": 77, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.638739460197e20 }, + }, + { + id: "9126053469", + receipt_id: "8Z6NhDAFQ1sPUC7vf9Uh2pw1BdVWvhsCP7qt4p6TMJTs", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EfcDUheYcvwjVoe6QnRFNQsbMcD1x7bV3TkqMVMwC9CH", + block_height: 130073825, + block_timestamp: 1728636658765342500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "368Qjndm5c3sx6pduCFwisR3LFPvRB99JSkxo5YHeszE", + included_in_block_hash: "F6AG1LFesLQtChpA56tDGsfMKMAjbxmJTs5PCNRJx1pv", + block_timestamp: "1728636656426856660", + block: { block_height: 130073823 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 5e22, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.638739460197e20 }, + }, + { + id: "9126053470", + receipt_id: "Gz2cB5qi3Vhbe6SxNZAjSbTYr2rinc3uQZxRjPKabXqC", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EfcDUheYcvwjVoe6QnRFNQsbMcD1x7bV3TkqMVMwC9CH", + block_height: 130073825, + block_timestamp: 1728636658765342500, + }, + receipt_outcome: { + gas_burnt: 3139114016228.0, + tokens_burnt: 3.139114016228e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "368Qjndm5c3sx6pduCFwisR3LFPvRB99JSkxo5YHeszE", + included_in_block_hash: "F6AG1LFesLQtChpA56tDGsfMKMAjbxmJTs5PCNRJx1pv", + block_timestamp: "1728636656426856660", + block: { block_height: 130073823 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.139114016228e20, + args: '{"proposal_id": 77}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.638739460197e20 }, + }, + { + id: "9126054516", + receipt_id: "BMHc4YVupWviFH4jBPsTCqTqzmaMNPukRFcahzuXhsgd", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3MR23N6kc1q2QZE5V1C6w8pg4yTrwG9Qdp7TRqiua79v", + block_height: 130073827, + block_timestamp: 1728636660878285000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "368Qjndm5c3sx6pduCFwisR3LFPvRB99JSkxo5YHeszE", + included_in_block_hash: "F6AG1LFesLQtChpA56tDGsfMKMAjbxmJTs5PCNRJx1pv", + block_timestamp: "1728636656426856660", + block: { block_height: 130073823 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.638739460197e20 }, + }, + { + id: "9126566625", + receipt_id: "8yJwYvV4iRfFtofcTm481WipSf1fbkwchRH4G4Lb3Mmn", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EUxLgvqfeybfS7YzwH3sbEetnqX5ABbs5Lw1M8cvKCoY", + block_height: 130075065, + block_timestamp: 1728638014291669800, + }, + receipt_outcome: { + gas_burnt: 2902549048644.0, + tokens_burnt: 2.9025490486439998e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "J1gwsCGS18TAb11mLgN9ZrD5uwrChHY96cgiHTaWdeKm", + included_in_block_hash: "8JkVEEg2HHrxMgAryUizPfLB7eZkMtxyzePd23PEAqBj", + block_timestamp: "1728638013286503635", + block: { block_height: 130075064 }, + receipt_conversion_tokens_burnt: "33967380304500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.9025490486439998e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000000000000000000000", "token_id": "", "receiver_id": "petersalomonsen.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Developer Contributor report by Peter for 2024-05-21 - 2024-06-20\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Requesting funding for my DevHub contributions in the period 21th of May to 20th of June 2024. 37.5 hours in total. There have been various topics such as tests for the Infrastructure committee instance, creating the structure for maintaining multiple instances in the main devhub repository, support for multiple instances in the web4 social media landing pages and assistance in other tasks.\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.242222851689e20 }, + }, + { + id: "9139548731", + receipt_id: "Ge7V5cigSSrNSFjX2fkJA9DR5Hg7UQtoEwbpF33NPm2J", + predecessor_account_id: "thomasguntenaar.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4PjFdq3K5Lo5RCQNFzwFBR81HZfu6mbmQPy2zmbp3oEV", + block_height: 130105505, + block_timestamp: 1728671672259325000, + }, + receipt_outcome: { + gas_burnt: 2973212355156.0, + tokens_burnt: 2.9732123551559995e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "6BnD8zMZsv12iU3hezenAdg985g6aj3HeXumyqBXyqoq", + included_in_block_hash: "9aWhiNMjmBYstmgkK61czTTLwxLpLDTi82Yv3oPD6tmp", + block_timestamp: "1728671671233247593", + block: { block_height: 130105504 }, + receipt_conversion_tokens_burnt: "33337955266500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.9732123551559995e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "8500000000000000000000000000", "token_id": "", "receiver_id": "thomasguntenaar.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Developer Contributor report by Megha for 09/09/2024 - 10/06/2024\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Worked on integrating new features to treasury dashboard, like asset exchange using the ref-sdk API, stake delegation, made first version live for devhub, fixed some bugs with devhub and other instances.\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Changed the recipient and amount \\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":220}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.3065919078210005e20 }, + }, + { + id: "9140410163", + receipt_id: "281YTQivnC1Dknc2w5voshKmyXAZU6bsmbhh98Bxoz4Z", + predecessor_account_id: "thomasguntenaar.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8Wp6czuk4axpRp7wnp4BTmRkFpMHqf7i2wBvjkK92wrL", + block_height: 130107628, + block_timestamp: 1728674024406463700, + }, + receipt_outcome: { + gas_burnt: 2856122725786.0, + tokens_burnt: 2.8561227257859998e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Ha68b8vc3drVYYZbueRTiN7Eu8heutdDJm1CCn12EK1V", + included_in_block_hash: "CY65ooxAMoXDbznMcLUbXhpd8CWEnSxhLt6A21sLxnfH", + block_timestamp: "1728674023134377259", + block: { block_height: 130107627 }, + receipt_conversion_tokens_burnt: "32727603714500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8561227257859998e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "5200000000", "token_id": "usdt.tether-token.near", "receiver_id": "flmel.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\" DevHub DevRel Contributor Report by Lyudmil for 01/08/2024 - 31/08/2024\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Decentralized DevRel Contribution Report by Lyudmil Covering 1 - 31 August\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Same proposal linked different recipient\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":213}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.183398762931e20 }, + }, + { + id: "9140444053", + receipt_id: "BcSgP9ihUXBb8j7QD1Dwu1pXAQvnS6uGZEpYDdq8ZRpS", + predecessor_account_id: "thomasguntenaar.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "B7yXVEKqSxHi83mC45JMiejCxLp73RAtWEJcccyQrbVH", + block_height: 130107735, + block_timestamp: 1728674143112132600, + }, + receipt_outcome: { + gas_burnt: 2890982283448.0, + tokens_burnt: 2.890982283448e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "28EDebiAgaQTN2kgjGBu59mRKBJoUaMBCQUe9hUXWCm1", + included_in_block_hash: "2H1dV3o8KjibgeA1Sje71pVJ5jBoT9AwHmrFRB3bVyK8", + block_timestamp: "1728674141860433843", + block: { block_height: 130107734 }, + receipt_conversion_tokens_burnt: "33500079897500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.890982283448e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "8400000000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "megha19.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Developer Contributor report by Megha for 09/09/2024 - 10/06/2024\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Worked on integrating new features to treasury dashboard, like asset exchange using the ref-sdk API, stake delegation, made first version live for devhub, fixed some bugs with devhub and other instances.\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Treasury balance insufficient\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":220}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.225983082423e20 }, + }, + { + id: "9140451858", + receipt_id: "Cj6uJAQ2MVSC8ASwp12XVaoaCTEnsdNvND5AZS1zXJH5", + predecessor_account_id: "thomasguntenaar.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "38sDTj5vzkBxeKDcEuBwtRZiC7ZCQnroZ5qZoct1B239", + block_height: 130107742, + block_timestamp: 1728674151049926100, + }, + receipt_outcome: { + gas_burnt: 2890982283448.0, + tokens_burnt: 2.890982283448e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Fxotfad6TSW91shZ66zVXhQqd1ifSfzkXdkRwrfZV4Nv", + included_in_block_hash: "4LQw8QsL113AdYgXZ5HM6eRDKq5o273aoGgpX53Bh8Bv", + block_timestamp: "1728674149816847552", + block: { block_height: 130107741 }, + receipt_conversion_tokens_burnt: "33500079897500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.890982283448e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "8400000000", "token_id": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "receiver_id": "megha19.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"DevHub Developer Contributor report by Megha for 09/09/2024 - 10/06/2024\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Worked on integrating new features to treasury dashboard, like asset exchange using the ref-sdk API, stake delegation, made first version live for devhub, fixed some bugs with devhub and other instances.\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Treasury balance insufficient\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":220}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.225983082423e20 }, + }, + { + id: "9217068617", + receipt_id: "4Cno3nnDFgBFQGttqaJK6gLmWjPoR9thAKyqRJGd4iAP", + predecessor_account_id: "thomasguntenaar.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "JMe8HLQNqv43tHwEWPvJxjJptnmGgViS1xyEhwZcQTq", + block_height: 130368412, + block_timestamp: 1728961212853508600, + }, + receipt_outcome: { + gas_burnt: 4620636629560.0, + tokens_burnt: 4.6206366295600005e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "33MgVjhpZX91AAKZtRUG59CshhSiqnrtUmK7eh8EaeDr", + included_in_block_hash: "DhtQhj59LAkovX8DQztbgcJfcQFJwAYkoVdaNLEjt7u8", + block_timestamp: "1728961211604662148", + block: { block_height: 130368411 }, + receipt_conversion_tokens_burnt: "49178485389500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 4.6206366295600005e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "tfdevhub.near", "theori.near", "thomasguntenaar.near", "test03.near", "test05.near", "test04.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.1124214834549994e20 }, + }, + { + id: "9217070505", + receipt_id: "4AFMqdJkiv17zQ9RMdH8Py5CJGXmbr8quQim7vit9t25", + predecessor_account_id: "thomasguntenaar.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "D58sGMes7Vrx5PG87Xz3Souh9LwsnNVdH1yHMARQRGu9", + block_height: 130368416, + block_timestamp: 1728961217708384800, + }, + receipt_outcome: { + gas_burnt: 4908458799179.0, + tokens_burnt: 4.908458799179e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Er5nMeJdsHzB9whsigQTEifU84vzb8ozFNRhSWdJdGFM", + included_in_block_hash: "CePS2NYPV2uYyFZYntttTMgUpr6QUZPkyzTFCnQ2HDLe", + block_timestamp: "1728961216532801795", + block: { block_height: 130368415 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.908458799179e20, + args: '{"id": 83, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.4417989451390006e20 }, + }, + { + id: "9217071174", + receipt_id: "EKNPUh9jFcbveyEPthwyJ1mQBR2S2BFiEwUtq7Q1cBxG", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "thomasguntenaar.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6b2kZAG2pb4vNzazjkTb9An4hD8NvKiE4FgmRVcSLa1u", + block_height: 130368417, + block_timestamp: 1728961218615125800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "thomasguntenaar.near", + status: true, + }, + transaction_hash: "Er5nMeJdsHzB9whsigQTEifU84vzb8ozFNRhSWdJdGFM", + included_in_block_hash: "CePS2NYPV2uYyFZYntttTMgUpr6QUZPkyzTFCnQ2HDLe", + block_timestamp: "1728961216532801795", + block: { block_height: 130368415 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.4417989451390006e20 }, + }, + { + id: "9234708734", + receipt_id: "H1eLyvS4P5nTqPkRaF7YMJ2qAqEvk8pJfjdq8HpnLJuJ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "87nbv3ueMZiHYS2RUiJPkMmXnybio2h5BtwRHFS57Jqd", + block_height: 130409462, + block_timestamp: 1729006697314262000, + }, + receipt_outcome: { + gas_burnt: 4545379829505.0, + tokens_burnt: 4.545379829505e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DrahVdrCrtsrYTYygWCn2ygUsM5BevckjSBtMP1V4bH2", + included_in_block_hash: "849noNGvx9QR9WF5v2NRF5r6CRBnekbTxqiTFGiFcfxg", + block_timestamp: "1729006696335902948", + block: { block_height: 130409461 }, + receipt_conversion_tokens_burnt: "49245242590500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 4.545379829505e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "tfdevhub.near", "theori.near", "thomasguntenaar.near", "test04.near", "test03.near", "test05.near", "freski.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.03783225541e20 }, + }, + { + id: "9234711459", + receipt_id: "94rMog9SfPknCCBoj5cw3kQcuFFd53j1P9cWeb1K5Fuc", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "CA3bMCU1A7EW45dMaWxVAaFHv3d3vNqMz9V473jLJ1Bs", + block_height: 130409466, + block_timestamp: 1729006701538195200, + }, + receipt_outcome: { + gas_burnt: 4935780455921.0, + tokens_burnt: 4.935780455921e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7iBdN7QkK5mxuDp5JgC7BHUBh1PXEvfguZA4vo65XzSC", + included_in_block_hash: "DzKR2hix81XQYqnc5op3E85EWa8tabaonYgLQRfrw8ZY", + block_timestamp: "1729006700462125787", + block: { block_height: 130409465 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.935780455921e20, + args: '{"id": 84, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.469120601881e20 }, + }, + { + id: "9234712239", + receipt_id: "6wBaijTKD3KdAJGTDcZrXYXCqipHQZshW8wqMWmAev3u", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ECHTmDBSE2BJBjCpQrZUaeVdE3HNhRRj1X2ejKTmHAEC", + block_height: 130409467, + block_timestamp: 1729006702480658000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "7iBdN7QkK5mxuDp5JgC7BHUBh1PXEvfguZA4vo65XzSC", + included_in_block_hash: "DzKR2hix81XQYqnc5op3E85EWa8tabaonYgLQRfrw8ZY", + block_timestamp: "1729006700462125787", + block: { block_height: 130409465 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.469120601881e20 }, + }, + { + id: "9234862466", + receipt_id: "9jhZCtH7NjkVA9J5uQAYdoGrJfprtk7KJPe96Ybkttgi", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FFaYkPGsMDfZWnoHfk7AR8QNZ5vPvW2xoEThKJ6roHvo", + block_height: 130409688, + block_timestamp: 1729006957529946600, + }, + receipt_outcome: { + gas_burnt: 4613729175966.0, + tokens_burnt: 4.613729175966e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5DCG586mAouafTR1KPNbjdWU7UTj66feoocMDHyouZL1", + included_in_block_hash: "E8yTTU6d1hmnQf7rTN7iaq4PXRFywdbpyQMR6GAKhA1Z", + block_timestamp: "1729006956447463636", + block: { block_height: 130409687 }, + receipt_conversion_tokens_burnt: "48859004499000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 4.613729175966e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [5, 100], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "tfdevhub.near", "theori.near", "thomasguntenaar.near", "test04.near", "test03.near", "test05.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [6, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "0", "threshold": [1, 2], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Remove Member"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.1023192209560004e20 }, + }, + { + id: "9234863575", + receipt_id: "FDV3VQmaJ6qVGS5hTotkmmC1LpWYmpkeAJoqy19LQ5BJ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "H9zXrcjPJnEM6NeReCCRYCVT5yRNdA9Nn8xZZqZUUFSo", + block_height: 130409691, + block_timestamp: 1729006960738602000, + }, + receipt_outcome: { + gas_burnt: 4968616197275.0, + tokens_burnt: 4.968616197275e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "6pTMZPPBXe9amMGj5d9b6Z5drSBh5EbRa7sp6Gb6MU4r", + included_in_block_hash: "2QndtLvcutGMumsEGBjqRyjDt5LhBUEL2Fo2SujCDrBY", + block_timestamp: "1729006959592386090", + block: { block_height: 130409690 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.968616197275e20, + args: '{"id": 85, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.5019563432350004e20 }, + }, + { + id: "9234864127", + receipt_id: "2qufWS1mEJPwHKdmbYGcGgto3PzMpeQykZSXGdcuca7E", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GD8dfNkBG5FBsP5vJnrS3p7rGrRJxwC63Bq6RNrUpM3v", + block_height: 130409692, + block_timestamp: 1729006961753482000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "6pTMZPPBXe9amMGj5d9b6Z5drSBh5EbRa7sp6Gb6MU4r", + included_in_block_hash: "2QndtLvcutGMumsEGBjqRyjDt5LhBUEL2Fo2SujCDrBY", + block_timestamp: "1729006959592386090", + block: { block_height: 130409690 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.5019563432350004e20 }, + }, + { + id: "9287436692", + receipt_id: "EFh76fg3VaRQLqchJkDa6ogzCQWqU2aiLxPZYLF3zZ2x", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "D7PhMWUKLqyTzDZCbpLckuVYCCBcDvMHR2j3m6sHEqbY", + block_height: 130554683, + block_timestamp: 1729167747533828600, + }, + receipt_outcome: { + gas_burnt: 2215585758969.0, + tokens_burnt: 2.215585758969e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "383D7ijV3ZK8DhpWEK8v9kmFzEhGgK3uPEd4rYcDBWB4", + included_in_block_hash: "DgYA3NxtHMjc8ifZyzdrDVditWXp4HGFHXprvetKvpXv", + block_timestamp: "1729167746329373608", + block: { block_height: 130554682 }, + receipt_conversion_tokens_burnt: "48587207323500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.215585758969e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "testingAccount.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "tfdevhub.near", "theori.near", "thomasguntenaar.near", "test04.near", "test03.near", "test05.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.7014578322040003e20 }, + }, + { + id: "9292146702", + receipt_id: "G4bzBXG2DZvtnA1siJHfQt1vWhiCuyhuMn1nS3CtVaji", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2H2jiY5snmbnYKi9iMBUCiSp8ThmXYoDwtfAiSo6XpgC", + block_height: 130565845, + block_timestamp: 1729180210714287600, + }, + receipt_outcome: { + gas_burnt: 2214354202201.0, + tokens_burnt: 2.214354202201e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "BmQq773a1wKwbfrDDS5u6XDnhzxrZYHzdBQeEABiAPoT", + included_in_block_hash: "HPKeHXYzxgtADPGCM1TixKF9DycnEEozgaRByYh7Ybtm", + block_timestamp: "1729180209550320577", + block: { block_height: 130565844 }, + receipt_conversion_tokens_burnt: "48234347832500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.214354202201e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "testingAccount.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "tfdevhub.near", "theori.near", "thomasguntenaar.near", "test04.near", "test03.near", "test05.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": 1, "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.696697680526e20 }, + }, + { + id: "9292203902", + receipt_id: "3puzYDn11Bg3KnccumjfweAbyEahWPNHeJYGGLHHG5ag", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GecNgJDbST8u8MPBtJjN5DSwFgnz8qX8njuLxsXEd3zY", + block_height: 130566056, + block_timestamp: 1729180444223431700, + }, + receipt_outcome: { + gas_burnt: 2294574339785.0, + tokens_burnt: 2.294574339785e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "8M45LrJiaPPXAPLK7a17pnaKzkkYisw9TV2cKCCHcpWQ", + included_in_block_hash: "ADdJSBhiCob8N5svxSGd7iTMxSU6zVkQ93GPLSADmeJf", + block_timestamp: "1729180443284505586", + block: { block_height: 130566055 }, + receipt_conversion_tokens_burnt: "48940066814500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.294574339785e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "testingAccount.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "tfdevhub.near", "theori.near", "thomasguntenaar.near", "test04.near", "test03.near", "test05.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": ["1"], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.78397500793e20 }, + }, + { + id: "9319441556", + receipt_id: "66FTt1DGSSH9MNM29zafXSTS7wjWiPEyrsUg26vWxwjX", + predecessor_account_id: "frol.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4exiEbBcyQWydHkeQCFRubMoWo4BGUgjShnUdvzFMPpK", + block_height: 130636711, + block_timestamp: 1729260356183666700, + }, + receipt_outcome: { + gas_burnt: 1828608724817.0, + tokens_burnt: 1.828608724817e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "F7j9oj9zpVEmuZiyKDs7kfVEVqNq3oFEh9zTWeXYgVTj", + included_in_block_hash: "EqyjhxJ7ocdXGcfxrfjZkYC3gsvX9sZVcThNuGyKr8TS", + block_timestamp: "1729260354851529557", + block: { block_height: 130636710 }, + receipt_conversion_tokens_burnt: "37267093382500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.828608724817e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "testingAccount.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.2012796586419998e20 }, + }, + { + id: "9319455638", + receipt_id: "7gURUrkta6UHYtXmFRXhNtdeqzJkkRRaY6FmK5p5C1Hq", + predecessor_account_id: "frol.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "21uSchKHovEFsUZd7JCbbTgb4soEZwJR48j4x2GQCJ7P", + block_height: 130636766, + block_timestamp: 1729260422001173000, + }, + receipt_outcome: { + gas_burnt: 1806769905989.0, + tokens_burnt: 1.806769905989e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "G3rN2cqeRNFC4gkxfHu1VHGzXkHcmsS2LR98PKvcBKC5", + included_in_block_hash: "HeiFtuMU1jewuV6urs38kFBpgMrxX8AfnnsmYP8Ke1RG", + block_timestamp: "1729260420889013581", + block: { block_height: 130636765 }, + receipt_conversion_tokens_burnt: "36494617199500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.806769905989e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "testingAccount.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.171716077984e20 }, + }, + { + id: "9319463476", + receipt_id: "65wFR1p2Pf26RJsjKFpxLYkYnRmGjPwKtKcXmrTdMQ65", + predecessor_account_id: "frol.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6bXng2D3DDUa4F6ceZFDgJSi2stezmpX6hY23piny6cq", + block_height: 130636798, + block_timestamp: 1729260457164777500, + }, + receipt_outcome: { + gas_burnt: 1810143075925.0, + tokens_burnt: 1.810143075925e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "D1VrNNyofTJ9yEFJYMoqSvjP356qj3VSE28fd8VEXW9k", + included_in_block_hash: "EdZCLxRfF1q1S5BSmgUjJJsU1TearmevjhJ4wdtMsv8H", + block_timestamp: "1729260456063294897", + block: { block_height: 130636797 }, + receipt_conversion_tokens_burnt: "36518459057000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.810143075925e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "testingAccount.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": [1, 100], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.175327666495e20 }, + }, + { + id: "9319468596", + receipt_id: "3umf6pmYeMz7KBMD7Y5ZXUKbc16zvu7imn2FYpygCKHK", + predecessor_account_id: "frol.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7UU5F8EbXvFb317QQmd7uSH7gRXcykFEAy4x7RnHn1bq", + block_height: 130636819, + block_timestamp: 1729260480285209900, + }, + receipt_outcome: { + gas_burnt: 2287479679706.0, + tokens_burnt: 2.287479679706e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "2PmemUz33p1yKEW3YUF9FQoS8ztoEQWHq6wWD5NcTtDh", + included_in_block_hash: "9Jcd2E7HvzpnAzkJ4i6tttzvsBzu7i3zMuBWHMJjkVc4", + block_timestamp: "1729260479208407470", + block: { block_height: 130636818 }, + receipt_conversion_tokens_burnt: "33318881780500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.287479679706e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": [1, 100], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.620668497511e20 }, + }, + { + id: "9320191431", + receipt_id: "EiXF4VU8xykWiGyHgpGzg1ETxTW4CRxu16au88Zejt1D", + predecessor_account_id: "frol.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6crHU2sbFPpP4oDbQN4qqj2ZwhgJd3Wdgui831dFFEQg", + block_height: 130638543, + block_timestamp: 1729262505854968600, + }, + receipt_outcome: { + gas_burnt: 1808329478421.0, + tokens_burnt: 1.808329478421e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "BZB8msd2qS84ESpN8ajYpVhN4YtVcLDpTawxGtDXyHw5", + included_in_block_hash: "EBsSY8NUJ6qNMEr9o2EfvAw2kpGVggD3TgxKEa4WVDug", + block_timestamp: "1729262504567863658", + block: { block_height: 130638542 }, + receipt_conversion_tokens_burnt: "36442165113000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.808329478421e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "testingAccount.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": [1, 100], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.172751129551e20 }, + }, + { + id: "9374145067", + receipt_id: "BRQoLwwLfTDMwsxVpQYV8Xj6tYq8xkAYg4KVD8Gc6wjP", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8pFr39VytuU8gica5okvQFw16PhTGhHziyYoGUwkuxFm", + block_height: 130780205, + block_timestamp: 1729423354877076200, + }, + receipt_outcome: { + gas_burnt: 3128169920194.0, + tokens_burnt: 3.1281699201939997e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5d5KD9FTL2mePTwt8M8WzE2mqDqNHo3Mwcyu8MXtLe79", + included_in_block_hash: "Ggmue6SpeDhXJYSoHNMFRGLHNWHsu9tJFsF6XkCiSEqS", + block_timestamp: "1729423353774079017", + block: { block_height: 130780204 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.1281699201939997e20, + args: '{"id": 69, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.438279819939e20 }, + }, + { + id: "9397250007", + receipt_id: "ERpqZ58EWUcBSAW6vZKT1h2dihQvSTwv168qVsc7rPPq", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "H81mQLhJtxrLnrAEzFdJTmZjfGyn3K5ppBbMBFbKpqvd", + block_height: 130841002, + block_timestamp: 1729490564468299500, + }, + receipt_outcome: { + gas_burnt: 3094737110398.0, + tokens_burnt: 3.094737110398e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FfW1tz7Tv4ouYjRL4bGmvS2nqfrsKmBJ4xhMk5GAEY63", + included_in_block_hash: "8dcSQ442UmjiyPRPSNh19m2HtWSrMBCoWzo6gvMDY9DS", + block_timestamp: "1729490563451166873", + block: { block_height: 130841001 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.094737110398e20, + args: '{"id": 82, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.4048470101430003e20 }, + }, + { + id: "9397287589", + receipt_id: "G4fwiNKfWLjbfdgviasfAADsddP6UGozXZdFJyWBywBM", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "eQB1DHi3qkewUBpYgtNRqbJsHMykxCWSyXnhyPFz9AB", + block_height: 130841073, + block_timestamp: 1729490645219711700, + }, + receipt_outcome: { + gas_burnt: 3150024934102.0, + tokens_burnt: 3.150024934102e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7YZVDqMiyfuEpkUDstZfPuYtpdZT9SEjJgsVDEavKNvS", + included_in_block_hash: "85e4nGvaschgBZR7FKnqkB1dxbTtxHDg3N7FDvXGeBg4", + block_timestamp: "1729490644065236944", + block: { block_height: 130841072 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.150024934102e20, + args: '{"id": 81, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.460134833847e20 }, + }, + { + id: "9398026869", + receipt_id: "2ECjoFYrUWw3P4Wf9g2QsveYegPyfU8gXQGepuEBJk3S", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8ZEFYSfSs6AAQd8X9pq2Gc8h9kJnxGDpJC3ubDokzQ1", + block_height: 130843100, + block_timestamp: 1729492928342817000, + }, + receipt_outcome: { + gas_burnt: 2479960212297.0, + tokens_burnt: 2.479960212297e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "GW8kri9LgQJncm1MsobtzXUsKwXKV6EAkY3HEghgNyBV", + included_in_block_hash: "8vjRrHwJ9D71x5uSyLEjuzKgL9EHaKtWokwp8eyRjBpu", + block_timestamp: "1729492927178753058", + block: { block_height: 130843099 }, + receipt_conversion_tokens_burnt: "44367198546000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.479960212297e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "tfdevhub.near", "theori.near", "thomasguntenaar.near", "test04.near", "test03.near", "test05.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "vote": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "config": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "policy": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": 2, "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.923632197757e20 }, + }, + { + id: "9398049360", + receipt_id: "8eyw8GZ8NvqQkwxXWEm4skAyMmkxpR2fgNN2K3CPcpHS", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BAQCCTmMq7nTGU96XMb5KYaoNVr4Ks6psUUNskya1fH2", + block_height: 130843143, + block_timestamp: 1729492976322084000, + }, + receipt_outcome: { + gas_burnt: 1943873528157.0, + tokens_burnt: 1.943873528157e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "7hojyo7mdiSUzeSq83R77ECEZ9LLkwszQyTJH7pVKszB", + included_in_block_hash: "5R7zWHdWknXYmBB39SNb96hRKbJd9tHFTqKKse8qhcUY", + block_timestamp: "1729492975126560485", + block: { block_height: 130843142 }, + receipt_conversion_tokens_burnt: "36156062823000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 1.943873528157e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "tfdevhub.near", "theori.near", "thomasguntenaar.near", "test04.near", "test03.near", "test05.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": 2, "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.305434156387e20 }, + }, + { + id: "9398070956", + receipt_id: "5uoGZrgMHwF1pDd9tHfh2PvJModvvpSPpse2cCVAVNs", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3wQ8xB6HvdaHuwyCnDHRrqtdtNYF3vwXMvobtgYKYX13", + block_height: 130843177, + block_timestamp: 1729493014653932500, + }, + receipt_outcome: { + gas_burnt: 3189307245217.0, + tokens_burnt: 3.1893072452169997e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9dAc5AHXXwpsDZQ62hWaEqqVt3G2Xmz33n1oeW8bQViT", + included_in_block_hash: "6X7MAkZ4P9z4Yqkwuu18aFBnDcQgoyi7bNJXZnAw12mj", + block_timestamp: "1729493013369077471", + block: { block_height: 130843176 }, + receipt_conversion_tokens_burnt: "36189441423500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.1893072452169997e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "tfdevhub.near", "theori.near", "thomasguntenaar.near", "test04.near", "test03.near", "test05.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": [50, 100], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.551201659452e20 }, + }, + { + id: "9398075694", + receipt_id: "DHEsmHjyVYSoEcvbZpv39hi2yzeh91wAHdM3RY85qWBu", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Hb9KpTwmRnTPM6XZquKvpeodqNyqrT8Y2kb66XzJ6iAL", + block_height: 130843199, + block_timestamp: 1729493040947625700, + }, + receipt_outcome: { + gas_burnt: 3875445469021.0, + tokens_burnt: 3.875445469021e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AFuu89hBqA5Y73duHrQNiJV6uLgpubEBCpEKSDmUVqWz", + included_in_block_hash: "DtmH2Gvv8hyp55JjFsZUGaDfGoVhuffaV58gvVJaeSua", + block_timestamp: "1729493039702252098", + block: { block_height: 130843198 }, + receipt_conversion_tokens_burnt: "44400577146500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.875445469021e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "treasurytestuserledger.near", "tfdevhub.near", "theori.near", "thomasguntenaar.near", "test04.near", "test03.near", "test05.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "vote": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "config": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "policy": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "4", "threshold": "4", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": [50, 100], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.3194512404860004e20 }, + }, + { + id: "9398119709", + receipt_id: "9Qj4QcsJ16Sv8GbYSRgmvaqQQnjW4JfjccfSe512o8Q6", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Cq4P8SQWfQS2NSdJZv58D4MM7yXKWrQVoaTXHy4TZzKc", + block_height: 130843337, + block_timestamp: 1729493190795266300, + }, + receipt_outcome: { + gas_burnt: 3852287513913.0, + tokens_burnt: 3.852287513913e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5TV3XxvXonaLt7ZkNG26fwkBCp5KeyLsKCjY6TYEzgUW", + included_in_block_hash: "6Kn5xiDcGHD4XcuZALfwQ81Yp54dFaj1ozEvadXB61Z7", + block_timestamp: "1729493189737983793", + block: { block_height: 130843336 }, + receipt_conversion_tokens_burnt: "43895129767500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.852287513913e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "frol.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "freski.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "theori.near", "thomasguntenaar.near", "frol.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}, "vote": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}, "config": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}, "policy": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "2", "threshold": "2", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": [0, 100], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.291238811588e20 }, + }, + { + id: "9398134889", + receipt_id: "6itL4CjFKLrtHMJbFh33HA1E8sgJpkNYQpbStkUfoPsP", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7NoMXkMqv68Vm7rMU3mp9NeGcaHwNf8Y6teue28u9xxG", + block_height: 130843404, + block_timestamp: 1729493262974966500, + }, + receipt_outcome: { + gas_burnt: 4498530340277.0, + tokens_burnt: 4.498530340277e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "6TYKJj6nXnMBFVabmxWz3R1mANBoc1vorRjAhjN3pz25", + included_in_block_hash: "9sDkYiRF9aFpzaBEMw5eELyLERVnxkmLAS3zWSTJM6nM", + block_timestamp: "1729493261852671349", + block: { block_height: 130843403 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.498530340277e20, + args: '{"id": 88, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.031870486237e20 }, + }, + { + id: "9398135182", + receipt_id: "2PvJV2rVE2sbiWtggraSwNbjf5NREXuuVGZZwQEwmaLG", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "CMFd6NwVuKt3RrVkieXywono77x2f1WdYtDJPFFMG884", + block_height: 130843405, + block_timestamp: 1729493263955486500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "6TYKJj6nXnMBFVabmxWz3R1mANBoc1vorRjAhjN3pz25", + included_in_block_hash: "9sDkYiRF9aFpzaBEMw5eELyLERVnxkmLAS3zWSTJM6nM", + block_timestamp: "1729493261852671349", + block: { block_height: 130843403 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.031870486237e20 }, + }, + { + id: "9463740932", + receipt_id: "97WNjynkhRws8otS8LUfE6Wm46a4VzajFmqGfudc2moY", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BbQvaUTTnkwvvTFeBCaBCjueoB6trTo6hhYCNo5eNFSS", + block_height: 131016221, + block_timestamp: 1729690775371076900, + }, + receipt_outcome: { + gas_burnt: 3052829793871.0, + tokens_burnt: 3.0528297938710004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5vGBVtisSkHH44s4rbU6Sb6uYCKmBDBPqKT3mzKwLasz", + included_in_block_hash: "AyQ9DPRhGrq9sgSQUZ9fERxdaQ3nUFzJbogdZFKgFXRr", + block_timestamp: "1729690774277675798", + block: { block_height: 131016220 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.0528297938710004e20, + args: '{"id": 78, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.362939693616e20 }, + }, + { + id: "9463770212", + receipt_id: "54hEkxeD5vqYgHSPswwGfS9RM7krg9bbViP7AbPtXSuP", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8CTYFJex45qknVQd4tSfffZtx7FFu4CLGJdfk6k5q5Jy", + block_height: 131016349, + block_timestamp: 1729690914446778400, + }, + receipt_outcome: { + gas_burnt: 2939899805719.0, + tokens_burnt: 2.9398998057190002e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CE8uDP8bUHVMk466TumMtNwkYWRBMzBi9EsnZFuwARdK", + included_in_block_hash: "Dpgk5oe6DQG6obqiTvwtd2UEV3KRkpPyXQK7z1aKw1EJ", + block_timestamp: "1729690913460895747", + block: { block_height: 131016348 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.9398998057190002e20, + args: '{"id": 80, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.250009705464e20 }, + }, + { + id: "9464078712", + receipt_id: "De8FwSuUVeGYYX8C6svMMj7UteFRuziNMQriSeisMg6b", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Ho7yvC19pHxvV4HM9EFVX84pmsSBEG9NKkzMCWDHDG77", + block_height: 131017173, + block_timestamp: 1729691833180986600, + }, + receipt_outcome: { + gas_burnt: 3691072044016.0, + tokens_burnt: 3.691072044016e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "458nz47UQkuarL4RFXMgXqzpNwm1AtbffdAwAuWhE2xP", + included_in_block_hash: "6Z7QaG5yhXRjs78kjRGZt6b2b2wuJPYpyKnxuTSJNjgJ", + block_timestamp: "1729691832026850858", + block: { block_height: 131017172 }, + receipt_conversion_tokens_burnt: "43728236765000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.691072044016e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "frol.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "freski.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "petersalomonsen.near", "theori.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": [0, 100], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.128354411666e20 }, + }, + { + id: "9464344300", + receipt_id: "CQ7Wp2cjrz67E5scgZBV2q2kq8JneNVpw86Zu8yUtR7S", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Eqh14KXTDRaY3nHAy1BwazhuSauk5n7GgqVu7Ttoyv2Z", + block_height: 131017762, + block_timestamp: 1729692494680657700, + }, + receipt_outcome: { + gas_burnt: 4344509742071.0, + tokens_burnt: 4.344509742071e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5fWGdy75NLhXzYqrakyKVvfDzfzb32GPveKEWXsoFoG4", + included_in_block_hash: "9fVWJGbs9CTEwweKJ7PLet4PN9yJYKnyoescRGDWndT9", + block_timestamp: "1729692493510246136", + block: { block_height: 131017761 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.344509742071e20, + args: '{"id": 89, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.877849888031e20 }, + }, + { + id: "9464344791", + receipt_id: "DU4GFffDnjmpgt9xcAWC2bHELMXNLb6AvZxTSoMW2J4J", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3F6nR8eNdb6vKDtJwWn6aGkZH5pdtUtXTD9ZBm6MwVaC", + block_height: 131017763, + block_timestamp: 1729692495763063000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "5fWGdy75NLhXzYqrakyKVvfDzfzb32GPveKEWXsoFoG4", + included_in_block_hash: "9fVWJGbs9CTEwweKJ7PLet4PN9yJYKnyoescRGDWndT9", + block_timestamp: "1729692493510246136", + block: { block_height: 131017761 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.877849888031e20 }, + }, + { + id: "9464405370", + receipt_id: "CoqRuz7gwNnCVRWBm9EbNKKPmYtsG2wcBiHLnza9yT16", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7yGtLWJHWr8enX2aL18Lfcqf24AiRWVtiQzx65WBDQ4f", + block_height: 131017908, + block_timestamp: 1729692661303186000, + }, + receipt_outcome: { + gas_burnt: 3636510924803.0, + tokens_burnt: 3.6365109248029996e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9iMYbyCqeEH3JQA4DegkX3B9qHEkPR5R8WLjZfwewUZS", + included_in_block_hash: "6qi21jNWaTdBV9tnmbvy1pgjmcmJ3BVEX4Tm5EfsBN5g", + block_timestamp: "1729692660024629994", + block: { block_height: 131017907 }, + receipt_conversion_tokens_burnt: "43632869335000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.6365109248029996e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "frol.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "freski.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "meghagoel.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "4", "threshold": "1", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": [0, 100], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.072839618153e20 }, + }, + { + id: "9464424591", + receipt_id: "3g3JbBLuEJW1Z5GEEFQJTVtgAVQeGgscH9hz55uvfiYd", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "25PKpLbeocMnFmUkbbFYuAnaCqBaGua4KyMEGd75wFgS", + block_height: 131017959, + block_timestamp: 1729692720495505700, + }, + receipt_outcome: { + gas_burnt: 4354906129829.0, + tokens_burnt: 4.354906129829e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AHKt2YsCbXUziPCh1xgz5UxgaTxkhB1AaUJ5zGWf1cdf", + included_in_block_hash: "EvrBJm1CrivUdjXjE181k6Fe3YLCm2e1RFBEV5TP2SmL", + block_timestamp: "1729692719390269222", + block: { block_height: 131017958 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.354906129829e20, + args: '{"id": 90, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.888246275789e20 }, + }, + { + id: "9464425181", + receipt_id: "6P6Kd3rR7m2yEPzqXA3FSY2qCQVQ2TRKxcGvLYzkPr12", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6E2mAaN1h7bHqPvfYKCVYJ6XpRGxbq7vTTedqubAcgGk", + block_height: 131017960, + block_timestamp: 1729692721460287200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "AHKt2YsCbXUziPCh1xgz5UxgaTxkhB1AaUJ5zGWf1cdf", + included_in_block_hash: "EvrBJm1CrivUdjXjE181k6Fe3YLCm2e1RFBEV5TP2SmL", + block_timestamp: "1729692719390269222", + block: { block_height: 131017958 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.888246275789e20 }, + }, + { + id: "9464436959", + receipt_id: "9UtCGwFDjv2XuGPsbEosdPBVrLyXyUWBVqKEDA3Y9fN4", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2bST5FvkfxF1PBRqjzmXzaawpCW8NjfQHg7z1HPXHRhX", + block_height: 131017997, + block_timestamp: 1729692764216064300, + }, + receipt_outcome: { + gas_burnt: 3025954038073.0, + tokens_burnt: 3.025954038073e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3wkTxP4qs2ZmpkaQj5hrXonDQWjasFV3GXVUL7E1g15x", + included_in_block_hash: "3f664QgE9T8whFQ11SPbFvRpPo1DZ6r5AmaYZkfVufDf", + block_timestamp: "1729692763021868580", + block: { block_height: 131017996 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.025954038073e20, + args: '{"id": 79, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.336063937818e20 }, + }, + { + id: "9464468414", + receipt_id: "FLK9Ljrz9nyZ5SQCU7yVcjHKiX4nCAYAjjv99Q4FTvx5", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "53pwbmm8kaVw7uDp5PKN4PKB69PVPYdQ18cJ7X5RQNaB", + block_height: 131018039, + block_timestamp: 1729692818805504500, + }, + receipt_outcome: { + gas_burnt: 2828078374412.0, + tokens_burnt: 2.8280783744120003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CW9dB4HDTz8bNnf48DyBjnP9PXjE2ms2kSQfXG6W8t7R", + included_in_block_hash: "4Dbe68MUZWRQxTRKGCvAAcXbgYHKcuueeMVZQJowFKRf", + block_timestamp: "1729692817795619657", + block: { block_height: 131018038 }, + receipt_conversion_tokens_burnt: "32517795368500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8280783744120003e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "100000", "token_id": "usdt.tether-token.near", "receiver_id": "maguila.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":226}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.1532563280969997e20 }, + }, + { + id: "9464486909", + receipt_id: "HdHZpEwqz4FDTRJN3qnWjgUEkgKgvZHyuKyCPbugTxrC", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Eg1nHwFMvbZkP6xi1VWddyBL4vMaomDD5TNr31yZQ92A", + block_height: 131018060, + block_timestamp: 1729692846327183600, + }, + receipt_outcome: { + gas_burnt: 3011106182269.0, + tokens_burnt: 3.011106182269e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2EFHep4FbdHUCTYvXt76NYx21e7rijj8j5bHNytqEKYi", + included_in_block_hash: "AKKkJY847oX2mdnm49xrLuYwmQ7bBuJejLE8pxCvy7fS", + block_timestamp: "1729692845017752033", + block: { block_height: 131018059 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.011106182269e20, + args: '{"id": 91, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.321216082014e20 }, + }, + { + id: "9464535942", + receipt_id: "9TgfC1g4gDiZsk75uaY7PTWY94g9fzuqoTzF45KqMo8z", + predecessor_account_id: "meghagoel.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EoW5Koxo4LTKypv4xHbwvxH2bFqcDYwpXU4DpTLimNEa", + block_height: 131018130, + block_timestamp: 1729692939082487000, + }, + receipt_outcome: { + gas_burnt: 2923911074461.0, + tokens_burnt: 2.9239110744610003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5EHwTMDMQQjiUhdrhgX9ddddWzbJRYeDQVBUrNLqGArh", + included_in_block_hash: "5dnTQvqFvdJ2eM4HhPTtJiJ5Lxa1tFQyNdfppTZxvdJn", + block_timestamp: "1729692937743862299", + block: { block_height: 131018129 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.9239110744610003e20, + args: '{"id": 91, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.234020974206e20 }, + }, + { + id: "9464841515", + receipt_id: "Gvt9iux8dsF2p8S8VsdApcfLG2m6ZjhQbWVxS6WhjUYu", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Gx84i1daVPaJdXjKoRDat2wVbFqjyvXutBbEPtauWv5h", + block_height: 131018851, + block_timestamp: 1729693791523380700, + }, + receipt_outcome: { + gas_burnt: 2829587387232.0, + tokens_burnt: 2.829587387232e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CUQHhdaCM7LB4bSRcYMTXgwveyns9irBD9CAnAH7yWTm", + included_in_block_hash: "HoNnypjCBKxK2QkCMwniD1igDC4pnx3S38pV4kvbPsiM", + block_timestamp: "1729693790283535361", + block: { block_height: 131018850 }, + receipt_conversion_tokens_burnt: "32493953511000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.829587387232e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000000000000000000000", "token_id": "", "receiver_id": "megha19.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":226}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.154526922342e20 }, + }, + { + id: "9464844684", + receipt_id: "8upRrrL1NG7NaVzUJvydpFU2KZEtyLNjn6WgQ4sjBPEu", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AtB2h6jxi487gA7An6jTmk6t3C2MrHT3fUXaGMtUkALu", + block_height: 131018862, + block_timestamp: 1729693805996063000, + }, + receipt_outcome: { + gas_burnt: 3006653127017.0, + tokens_burnt: 3.006653127017e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9zCJx98VBfB7uL5VS7EXyPvaR5aH2Z7HNZXGTQ7wPnEC", + included_in_block_hash: "DduN9vrVKNipBzLANue7LeV6d59Xr2rutqDZ5Dwro6Du", + block_timestamp: "1729693804720388447", + block: { block_height: 131018861 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.006653127017e20, + args: '{"id": 92, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.316810710477e20 }, + }, + { + id: "9464851031", + receipt_id: "Eq4NKhe3BMUi8AgT6HRZJewJE65qnjmBHz5qNt7s6HbU", + predecessor_account_id: "meghagoel.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "88KmvhRG6Hzyy4uzmvsNAvfhxQMS5hkuRNnAja8vRaJJ", + block_height: 131018886, + block_timestamp: 1729693832870607000, + }, + receipt_outcome: { + gas_burnt: 2960796550291.0, + tokens_burnt: 2.960796550291e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EqkbK75pSxDW5RhsUeSakfY9izK8Xs6SjnbULkyAoipF", + included_in_block_hash: "AJ9rBtZmp8F5mULdkzmvWRqeLKKjWXyRcHETVRTLLgaM", + block_timestamp: "1729693832017488473", + block: { block_height: 131018885 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.960796550291e20, + args: '{"id": 92, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.270906450036e20 }, + }, + { + id: "9464911377", + receipt_id: "GZb3gGbhutbXJHBy8oGmayY2jBZBcbHoUAZbXgeu5jhL", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2FK5jSDdmrx13RZQ2ETqissFjiNKTMo7uHm97Xt8oqis", + block_height: 131018981, + block_timestamp: 1729693945292061000, + }, + receipt_outcome: { + gas_burnt: 2788121519454.0, + tokens_burnt: 2.7881215194540003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5mPfYL4d2bFVFR93r6UKb52f4gCZEKBWjNhc7NEwFuK", + included_in_block_hash: "Aix3TQWVewgDGjeqk7rNHPkLbC6xkVTFDjQLU7UrfQ3t", + block_timestamp: "1729693944045953718", + block: { block_height: 131018980 }, + receipt_conversion_tokens_burnt: "32493953511000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.7881215194540003e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000000000000000000000", "token_id": "", "receiver_id": "megha19.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":226}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.113061054564e20 }, + }, + { + id: "9464924264", + receipt_id: "4QjZKjB2Y7GAoCG248LbAAQZteTd2LKbAaPfr8hexAe6", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4vqT4KbhUgSCYH3n5eopcbfbt57gUtXeyR79NMfGRjBw", + block_height: 131018996, + block_timestamp: 1729693963985812700, + }, + receipt_outcome: { + gas_burnt: 2923721391461.0, + tokens_burnt: 2.923721391461e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "8WjM1iaoxbHWW7JTJC9mZUexnmp93ybxcmLxHK26Y9uZ", + included_in_block_hash: "6hwjDWLpefSkZeVkvm5CWJ6GftBaqibvseHWuB29vpGg", + block_timestamp: "1729693962795500214", + block: { block_height: 131018995 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.923721391461e20, + args: '{"id": 93, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.233878974921e20 }, + }, + { + id: "9464933803", + receipt_id: "BsjvErRLSwKKkcHKYg4kUQ1SC74kBC2E25i5aV35ZPsB", + predecessor_account_id: "meghagoel.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5rkLdYCr7H3MQRk2VqWnknHw9LM5QhjScTdKuUKGoofy", + block_height: 131019008, + block_timestamp: 1729693979783967500, + }, + receipt_outcome: { + gas_burnt: 3002297606093.0, + tokens_burnt: 3.002297606093e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BpWUULNiYMzQRopqCVtJueqHM1GP1hojS3NezVE6SzMH", + included_in_block_hash: "ygDCwAS67sXxLtAV13u2Q34Mr7nZvCvNHnZYsMvpjRj", + block_timestamp: "1729693978563697275", + block: { block_height: 131019007 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.002297606093e20, + args: '{"id": 93, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.312455189553e20 }, + }, + { + id: "9464967999", + receipt_id: "GUz3SdUXgab6ZB6eDtvgrYVenZVZSyJ6BpGL9QHRC6n3", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "45ovGyojp6AJ2hVqn86pJ2BNUrrezNacoygPPjpTNmXg", + block_height: 131019139, + block_timestamp: 1729694129267664400, + }, + receipt_outcome: { + gas_burnt: 3660361698404.0, + tokens_burnt: 3.660361698404e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5ZZsidoxnh8iWBbwcB7bv7oA2goYEy34hPgfjzqy3KeQ", + included_in_block_hash: "21Am4Sqh4uxZi3zU3zCY9LN4KsxJGn7HERuaKmwzDBRd", + block_timestamp: "1729694128243128881", + block: { block_height: 131019138 }, + receipt_conversion_tokens_burnt: "43632869335000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.660361698404e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "frol.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "freski.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "meghagoel.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": [0, 100], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.0966903917539996e20 }, + }, + { + id: "9464988754", + receipt_id: "f63JyvRLCAv39qPhZTaHPcDVTePh4wgk4o6aYsnbqd9", + predecessor_account_id: "meghagoel.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Dnckym8FYfrATEnzJ6Z9dq5423MQgsZUbJvuBzVg3mtm", + block_height: 131019210, + block_timestamp: 1729694214569206500, + }, + receipt_outcome: { + gas_burnt: 3709165413641.0, + tokens_burnt: 3.709165413641e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "E99xUpxfbw3yEyYGf9PukUiSf1imM2W1qP8k2uJUtSS1", + included_in_block_hash: "DdGSfHjQHmN8troY9nX8bPz9jfGJzmNH3MLBfs7Fzni", + block_timestamp: "1729694213256780591", + block: { block_height: 131019209 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.709165413641e20, + args: '{"id": 94, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.019322997101e20 }, + }, + { + id: "9465124793", + receipt_id: "8mVdKVsDkaQqHUEaQ1ndYjyjFHQ4rYHhp7RrcBMKGf1i", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7YTr6t8yasZpG5atLUzStvRD35A5LPhXrMzju84GD9Cw", + block_height: 131019519, + block_timestamp: 1729694560657085700, + }, + receipt_outcome: { + gas_burnt: 4435760976815.0, + tokens_burnt: 4.435760976815e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "89WHL3K7qjkdZ2WXjH71ozsJ9N1cZ6pBu9Wtu4pMEA53", + included_in_block_hash: "GYWtbZdUsTZFFucEK2JEp1reMwZ4z9hKQBLo4iLNWuon", + block_timestamp: "1729694559336948835", + block: { block_height: 131019518 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.435760976815e20, + args: '{"id": 94, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.969101122775e20 }, + }, + { + id: "9465125181", + receipt_id: "3H24gAm3SSHyvvSFMPjArxJHTHKruYpNVb6KSLa1HX1e", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BYSaYVyjkVwcv14MnKHZ32JJVN5MDoSBsb6crUoJWrpi", + block_height: 131019520, + block_timestamp: 1729694561862429400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "89WHL3K7qjkdZ2WXjH71ozsJ9N1cZ6pBu9Wtu4pMEA53", + included_in_block_hash: "GYWtbZdUsTZFFucEK2JEp1reMwZ4z9hKQBLo4iLNWuon", + block_timestamp: "1729694559336948835", + block: { block_height: 131019518 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.969101122775e20 }, + }, + { + id: "9465154061", + receipt_id: "5XtS3vRGwWN8ERYWHouRU2N8yicNHn8cUVY6u66rVJzT", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6JRcp4vWsrr3VgB7qeDnD6gwAfxMpknAU69F9MBFHUZB", + block_height: 131019619, + block_timestamp: 1729694675322686700, + }, + receipt_outcome: { + gas_burnt: 2727606954404.0, + tokens_burnt: 2.727606954404e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9jvC5gPgZ9fWYhHAPbVP26BJ7cs9Jo2iVnGkc3ofhFUt", + included_in_block_hash: "BEZx3w1o4aFWZLWRnQfd4S6b8iUmd9TcK41i5ckjRT4m", + block_timestamp: "1729694674079621724", + block: { block_height: 131019618 }, + receipt_conversion_tokens_burnt: "31716708956500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.727606954404e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000000000000000000000", "token_id": "", "receiver_id": "megha19.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing threshold\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.044774043969e20 }, + }, + { + id: "9465160089", + receipt_id: "2XRnzxkcKN5yo2x9Rtp78aGcw3ezbxAfnMNzjkcmJ867", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "H21CXjkAnJtJAcTWEEW53UR9rPFSC1CKQ81kMf3iyVhA", + block_height: 131019634, + block_timestamp: 1729694695044314400, + }, + receipt_outcome: { + gas_burnt: 3651121424821.0, + tokens_burnt: 3.651121424821e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DQXypNDmYxmoLdG6UmuYJVuLWCdJ5tDv9vyPcoxW3ya2", + included_in_block_hash: "3EvEY2Z4dam5nVqaziEMeQmNjAYr5wwB89jrujFETFak", + block_timestamp: "1729694693743116047", + block: { block_height: 131019633 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.651121424821e20, + args: '{"id": 95, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.430719324129e20 }, + }, + { + id: "9465161205", + receipt_id: "516i3TiTKHBWuQimhkD3ZFdzrfL8qLrfDV7mXnWnWF5w", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4x4u46reM8eMr8XKGeShXLZdD222gtguueAD7T9nnUy9", + block_height: 131019635, + block_timestamp: 1729694696329081000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "DQXypNDmYxmoLdG6UmuYJVuLWCdJ5tDv9vyPcoxW3ya2", + included_in_block_hash: "3EvEY2Z4dam5nVqaziEMeQmNjAYr5wwB89jrujFETFak", + block_timestamp: "1729694693743116047", + block: { block_height: 131019633 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e22, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.430719324129e20 }, + }, + { + id: "9465161209", + receipt_id: "Diao5nuutdixsDGjoTYANh5SFHy4fHZkuPWGmcukVr6R", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4x4u46reM8eMr8XKGeShXLZdD222gtguueAD7T9nnUy9", + block_height: 131019635, + block_timestamp: 1729694696329081000, + }, + receipt_outcome: { + gas_burnt: 3023075190848.0, + tokens_burnt: 3.023075190848e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DQXypNDmYxmoLdG6UmuYJVuLWCdJ5tDv9vyPcoxW3ya2", + included_in_block_hash: "3EvEY2Z4dam5nVqaziEMeQmNjAYr5wwB89jrujFETFak", + block_timestamp: "1729694693743116047", + block: { block_height: 131019633 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.023075190848e20, + args: '{"proposal_id": 95}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.430719324129e20 }, + }, + { + id: "9465162954", + receipt_id: "GXnuDZkSfDTArdnZGBQFCQw7tjmrggj8AykWHHduPXQi", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7SM65RCE5xanJ7shH9DfdP1nojRSN2JpNbWjpp2U6Luz", + block_height: 131019637, + block_timestamp: 1729694698914764500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "DQXypNDmYxmoLdG6UmuYJVuLWCdJ5tDv9vyPcoxW3ya2", + included_in_block_hash: "3EvEY2Z4dam5nVqaziEMeQmNjAYr5wwB89jrujFETFak", + block_timestamp: "1729694693743116047", + block: { block_height: 131019633 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.430719324129e20 }, + }, + { + id: "9465234756", + receipt_id: "FpVHN8MCR59xXTzQoyJXEBpfuaJefXUk7yh5CYe26EHN", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EyGWEoJMZr6xnTWeq7pjZP36bG7bcTCwhmYJCFWkREtN", + block_height: 131019794, + block_timestamp: 1729694875815165700, + }, + receipt_outcome: { + gas_burnt: 2797236915306.0, + tokens_burnt: 2.797236915306e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "zBuP1yp35muPR4DEKLFyx36YKs4yXczBtgYugqf73Av", + included_in_block_hash: "Ce6M7YrH4kVbri23piYdL7UL5c2AUcjmXxyikaFK7j2", + block_timestamp: "1729694874639265778", + block: { block_height: 131019793 }, + receipt_conversion_tokens_burnt: "31807308015000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.797236915306e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000000000000000000000", "token_id": "", "receiver_id": "megha19.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing threshold 2\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.115309995456e20 }, + }, + { + id: "9465241758", + receipt_id: "52xZ4sP12HyBftT98RbT2iamqwBm97gU5maEKpJRQAfm", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DALsrBAADgysSbsatVR9BXdRt48iaL2NQcrRhAq4d8me", + block_height: 131019821, + block_timestamp: 1729694905915247000, + }, + receipt_outcome: { + gas_burnt: 3129048824302.0, + tokens_burnt: 3.129048824302e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7uZpCiHX26vGYsPJHBptZFRkGqz1hJSXVymk2uBMcgNv", + included_in_block_hash: "2K2ATRuMdDHdFL3xiGqP8Mj4LzAFZ9TGYQwQyZaa877B", + block_timestamp: "1729694904799099676", + block: { block_height: 131019820 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.129048824302e20, + args: '{"id": 96, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.662341286547e20 }, + }, + { + id: "9465242279", + receipt_id: "4WmZYkNhYEquShhnBw8sbsv5P3Ldn2Cx6TTeHpfd9bYq", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "F9scyiQ1S126vr8YHq9rPms4YTNZixJqYcFeohLQmTsa", + block_height: 131019822, + block_timestamp: 1729694907121671000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "7uZpCiHX26vGYsPJHBptZFRkGqz1hJSXVymk2uBMcgNv", + included_in_block_hash: "2K2ATRuMdDHdFL3xiGqP8Mj4LzAFZ9TGYQwQyZaa877B", + block_timestamp: "1729694904799099676", + block: { block_height: 131019820 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.662341286547e20 }, + }, + { + id: "9465369927", + receipt_id: "ENdNxp3yvE3xLDMMK86Da2KdFnempEvfGdW3kQTEVpV7", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4rqVEXZS8GEvLK3kAYezbpEAJsGT7ymNcqczwFyVcXPn", + block_height: 131020116, + block_timestamp: 1729695236393061600, + }, + receipt_outcome: { + gas_burnt: 3715649522108.0, + tokens_burnt: 3.7156495221080005e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DbXjQcRCEaFLPSEtEeAHrUAxG5fqW36gTWDAyo3kvSw4", + included_in_block_hash: "53Vy4k5dLkYFDzCqW4jBRDmRckFEEBYqJpRpP1s8ENxR", + block_timestamp: "1729695235172289530", + block: { block_height: 131020115 }, + receipt_conversion_tokens_burnt: "43632869335000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.7156495221080005e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "frol.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "freski.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "meghagoel.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "0", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": [0, 100], "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.151978215458e20 }, + }, + { + id: "9465394589", + receipt_id: "914PYPjyidBgbDrVSPKA69dapjXtS4qqAX7WTQZbjjee", + predecessor_account_id: "meghagoel.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "AgzgkRZ58PX3yTc7wraVfq4F44ZQnDmsp72qAHgeiQ25", + block_height: 131020192, + block_timestamp: 1729695320972356400, + }, + receipt_outcome: { + gas_burnt: 4373069183711.0, + tokens_burnt: 4.373069183711e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "EoNKkgpq1j5QFUMMMMXyhNq7CcAXMXZaH6spZHrUwRfH", + included_in_block_hash: "GJr9nYjWPCk4ZrmNCh6smRkifreC5ek8YauFGM8UBKzZ", + block_timestamp: "1729695319947424723", + block: { block_height: 131020191 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.373069183711e20, + args: '{"id": 97, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.906409329671e20 }, + }, + { + id: "9465395138", + receipt_id: "92G2c4VmAkruCEzJB5kwVxqffMLyXmuWkyS1ZgiZscfd", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9YuCpFvGkZ3XjbQ1UNiwdRu4sFamND5Ze278JXvrjKBe", + block_height: 131020193, + block_timestamp: 1729695321972176000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "EoNKkgpq1j5QFUMMMMXyhNq7CcAXMXZaH6spZHrUwRfH", + included_in_block_hash: "GJr9nYjWPCk4ZrmNCh6smRkifreC5ek8YauFGM8UBKzZ", + block_timestamp: "1729695319947424723", + block: { block_height: 131020191 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.906409329671e20 }, + }, + { + id: "9465447896", + receipt_id: "DEh1Z7CvNQJPEW5Qj2CUPFoqQGY1P5BEyseBpVTws72i", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "H2hfaHiZfnzD6Z5tgGJxS62mm2wtRquriHj4DNfksPYz", + block_height: 131020311, + block_timestamp: 1729695451353423400, + }, + receipt_outcome: { + gas_burnt: 2810886040264.0, + tokens_burnt: 2.810886040264e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GtVaXQUYcCcwfMxFoKqjY3S7NkiH2XbnjT1PFUMC5GP", + included_in_block_hash: "XVcN9VnfLVWkquww8F3k5m1xXXDBd8GgJw8KNzhA2p4", + block_timestamp: "1729695450415728104", + block: { block_height: 131020310 }, + receipt_conversion_tokens_burnt: "31726245699500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.810886040264e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000000000000000000000", "token_id": "", "receiver_id": "megha19.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing threshold 3\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.128148497259e20 }, + }, + { + id: "9465474573", + receipt_id: "GVGbFsC2Raa7HenMme4x37FtivrYMavBxFzb3PkY9J3R", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ERLGxkgKHxrGX3rzaUe3a8J7mLSgcFqpsK4g8c2jtBHv", + block_height: 131020351, + block_timestamp: 1729695499211858400, + }, + receipt_outcome: { + gas_burnt: 3651396051765.0, + tokens_burnt: 3.651396051765e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HLzXRc2yRhNzueAjw4369LqCwpLUTsSkRXX1V67uFJfk", + included_in_block_hash: "GcH45mcHt1XeHbUfKweZrkjgxJ1C7s2XeQpznch2YJtW", + block_timestamp: "1729695498231549618", + block: { block_height: 131020350 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.651396051765e20, + args: '{"id": 98, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.486599853438e20 }, + }, + { + id: "9465475314", + receipt_id: "8RvgEHP4vncRQqe97x9tzTvZ5FVmCizA1Z87GvaZfasc", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DAQjgzs2QNAL6at1tUKNRWuqSnfTz28qpxJ6erNKyXmB", + block_height: 131020352, + block_timestamp: 1729695500231347000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "HLzXRc2yRhNzueAjw4369LqCwpLUTsSkRXX1V67uFJfk", + included_in_block_hash: "GcH45mcHt1XeHbUfKweZrkjgxJ1C7s2XeQpznch2YJtW", + block_timestamp: "1729695498231549618", + block: { block_height: 131020350 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e22, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.486599853438e20 }, + }, + { + id: "9465475318", + receipt_id: "HKEMMNwaDf25rd4fLN8w3JC9tPNgU6WQp9h1rBgpdT4z", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DAQjgzs2QNAL6at1tUKNRWuqSnfTz28qpxJ6erNKyXmB", + block_height: 131020352, + block_timestamp: 1729695500231347000, + }, + receipt_outcome: { + gas_burnt: 3078728776928.0, + tokens_burnt: 3.078728776928e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HLzXRc2yRhNzueAjw4369LqCwpLUTsSkRXX1V67uFJfk", + included_in_block_hash: "GcH45mcHt1XeHbUfKweZrkjgxJ1C7s2XeQpznch2YJtW", + block_timestamp: "1729695498231549618", + block: { block_height: 131020350 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.078728776928e20, + args: '{"proposal_id": 98}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.486599853438e20 }, + }, + { + id: "9465476251", + receipt_id: "7Sf6F8kXYXJucwXvGWf2YFNYtkMVX4hsDGe4G8KRyM54", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BvCpA1tciaJcVwPuZZuBAFrKoHm382Fh2ckqPE45kmmA", + block_height: 131020354, + block_timestamp: 1729695502360039400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "HLzXRc2yRhNzueAjw4369LqCwpLUTsSkRXX1V67uFJfk", + included_in_block_hash: "GcH45mcHt1XeHbUfKweZrkjgxJ1C7s2XeQpznch2YJtW", + block_timestamp: "1729695498231549618", + block: { block_height: 131020350 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.486599853438e20 }, + }, + { + id: "9465622045", + receipt_id: "7yXiMj5AJ3v3osTEoC8hBbgW3LsCoLExErn4n9x3Z7Qe", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2HqPhAzghephZieUVbvEBuz2LouwETvDgS86YsT3A653", + block_height: 131020649, + block_timestamp: 1729695835681025300, + }, + receipt_outcome: { + gas_burnt: 3686252156590.0, + tokens_burnt: 3.68625215659e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7bHKoNEHeKTUMw1XChK5XtJGEWQhqUfBx5LCtj7p6Rs5", + included_in_block_hash: "9q4Uptt9YD8YSgC8US6sUpQJgcjLFEJrafzzCRdfRAFY", + block_timestamp: "1729695834674333347", + block: { block_height: 131020648 }, + receipt_conversion_tokens_burnt: "43942813482500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.68625215659e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "frol.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "freski.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "freski.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.1256802914150004e20 }, + }, + { + id: "9465641788", + receipt_id: "CjRFkWpBEcBTvGKoxDMNdBnAqdMYcT9SbRCxZRMBCji9", + predecessor_account_id: "meghagoel.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FZ8DeMqGPAYAVcyVowpfp3i5uVtFouYH7XzPiGa138nq", + block_height: 131020708, + block_timestamp: 1729695902170274300, + }, + receipt_outcome: { + gas_burnt: 4333126271639.0, + tokens_burnt: 4.333126271639e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "3LDtjUR3WMDu8ncYrAEjdQt1hdo7wdYvHNCjbpBydSon", + included_in_block_hash: "BmZ68NH7YdHfELnQHVBQya82x4xd3RWVnasAHgS7K43T", + block_timestamp: "1729695900849599815", + block: { block_height: 131020707 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.333126271639e20, + args: '{"id": 99, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.8664664175989994e20 }, + }, + { + id: "9465642288", + receipt_id: "Bh9CL5KvgKtm3f8wa3pa6HSHRPgq7v8q64EQWCzthVtb", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6BdKF4hmERuWHdi1v1D96V9M4ptFouqEyU6FCJ53EKyf", + block_height: 131020709, + block_timestamp: 1729695903322148600, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "3LDtjUR3WMDu8ncYrAEjdQt1hdo7wdYvHNCjbpBydSon", + included_in_block_hash: "BmZ68NH7YdHfELnQHVBQya82x4xd3RWVnasAHgS7K43T", + block_timestamp: "1729695900849599815", + block: { block_height: 131020707 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.8664664175989994e20 }, + }, + { + id: "9465694313", + receipt_id: "9MP6qX59MyKXtmeTnxFTKWbqnVfqbLp3iJSifhqVpDLr", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FPCT429H6bFMPRUR3K4CZxiZKEJ4mFXpYUGBCXJMtS8n", + block_height: 131020829, + block_timestamp: 1729696047066872600, + }, + receipt_outcome: { + gas_burnt: 3634859504812.0, + tokens_burnt: 3.6348595048120005e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CjvCM6HvSKDi1kf88uTtYcnJaJ2KMv7ESQsCip8eaWrP", + included_in_block_hash: "AfFQyogwvEJfBhQCDDAKpioFwoULfotHEbn6SNBobjnT", + block_timestamp: "1729696045983169094", + block: { block_height: 131020828 }, + receipt_conversion_tokens_burnt: "43613795849000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.6348595048120005e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "thomasguntenaar.near", "petersalomonsen.near", "frol.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["petersalomonsen.near", "thomasguntenaar.near", "freski.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "meghagoel.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "3", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.070997463302e20 }, + }, + { + id: "9465732640", + receipt_id: "5mM56wKAZDi7fKLA1RpkJ2L9cj9cjrYmxYJRWrwJykWj", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Fy8m3gQJUdpZLuUgWRKbuEmMfxQhgvfF17BjBNysLgHh", + block_height: 131020940, + block_timestamp: 1729696170141609000, + }, + receipt_outcome: { + gas_burnt: 4420174965825.0, + tokens_burnt: 4.420174965825e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "xeYfpZPJZc2w3orcpCozVpJ7m39fFh6DHf7LhhwBAXq", + included_in_block_hash: "8K1sb6EN9fvNpmDbm7R6g5uHHb7YXomNoJZctZJE8rJT", + block_timestamp: "1729696169045417044", + block: { block_height: 131020939 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.420174965825e20, + args: '{"id": 100, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.9535627955000004e20 }, + }, + { + id: "9465732946", + receipt_id: "5iSWrgFN82NZ9hwp2dmAqaky2e8tH6zLLgp976pghB8G", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5QU94JEnGvBcUw8c9tXSjCafkVzZmQEGvvMxhJrGbmDp", + block_height: 131020941, + block_timestamp: 1729696171349122000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "xeYfpZPJZc2w3orcpCozVpJ7m39fFh6DHf7LhhwBAXq", + included_in_block_hash: "8K1sb6EN9fvNpmDbm7R6g5uHHb7YXomNoJZctZJE8rJT", + block_timestamp: "1729696169045417044", + block: { block_height: 131020939 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.9535627955000004e20 }, + }, + { + id: "9465751052", + receipt_id: "BK7QSJgb1Gn2G75EDGDzrAKeVZtfBore35xcmhurSDtH", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "54SSdtFd9y1VSvrkxpc8UsZbKeqVRMoLUyarEomSM89w", + block_height: 131021003, + block_timestamp: 1729696249145290800, + }, + receipt_outcome: { + gas_burnt: 2730274359513.0, + tokens_burnt: 2.730274359513e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "699WYELAzzhnrJUNRW2poVo15t7qpaHZsmrTo154kpsv", + included_in_block_hash: "1BBx55bkuk23EteZaghBuYqh3kikqFa6JHQXt2x2EqU", + block_timestamp: "1729696248173620306", + block: { block_height: 131021002 }, + receipt_conversion_tokens_burnt: "31807308015000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.730274359513e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000000000000000000000", "token_id": "", "receiver_id": "megha19.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing threshold 4\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.048347439663e20 }, + }, + { + id: "9465756200", + receipt_id: "4DP6Wh2tbzmysSGcwNpwqMwEmeCxQNPiUY42hQXJyhHj", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9LugdfQmmFTyyHQZM98WiPjxTEZVsjVCqKSS2E72tCoJ", + block_height: 131021022, + block_timestamp: 1729696270582976300, + }, + receipt_outcome: { + gas_burnt: 2905497861309.0, + tokens_burnt: 2.9054978613090003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4fhaApFp9xmD4s5y2HCYsxz5b4garhmvfJSEaTpipFtt", + included_in_block_hash: "7RAgeeWz9Y9v7DLhfJqK3ZA78ip69QBmtsM2Z9BZGASN", + block_timestamp: "1729696269390546649", + block: { block_height: 131021021 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.9054978613090003e20, + args: '{"id": 101, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.215703128484e20 }, + }, + { + id: "9465762817", + receipt_id: "6PepbLBBuvupdseMysdH8MrGrynvNT27ftEy2bmMBwC1", + predecessor_account_id: "meghagoel.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6FytHEubds8d3JTnCVZ3N4Rk6Kk4cWWQzRyYE3rKSAP5", + block_height: 131021047, + block_timestamp: 1729696299141395200, + }, + receipt_outcome: { + gas_burnt: 3566058314616.0, + tokens_burnt: 3.566058314616e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "97qWg5ULeALxGGNiBjAdtvbrWoFRsvPsy7ayhJECZgjm", + included_in_block_hash: "x9s2i14ZFBCpEm1bsu9euA2GRaHZBkQTS2SR9ywQJuw", + block_timestamp: "1729696298090352442", + block: { block_height: 131021046 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.566058314616e20, + args: '{"id": 101, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.357287682179e20 }, + }, + { + id: "9465763191", + receipt_id: "HA9DiGLeeFjYxsMuk1JeST5gyQasP8XRNzLjWvhh7ECt", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DJpGD2ZctdrStTXoE3AbnK6GebUQNgYvHtZ7TndPx9EP", + block_height: 131021048, + block_timestamp: 1729696300268033300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "97qWg5ULeALxGGNiBjAdtvbrWoFRsvPsy7ayhJECZgjm", + included_in_block_hash: "x9s2i14ZFBCpEm1bsu9euA2GRaHZBkQTS2SR9ywQJuw", + block_timestamp: "1729696298090352442", + block: { block_height: 131021046 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 1e22, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.357287682179e20 }, + }, + { + id: "9465763192", + receipt_id: "A1hWxY91kBkEu5rUXPoJr4TqrnEk9Zb1juLRES5QBzoH", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DJpGD2ZctdrStTXoE3AbnK6GebUQNgYvHtZ7TndPx9EP", + block_height: 131021048, + block_timestamp: 1729696300268033300, + }, + receipt_outcome: { + gas_burnt: 3034658975388.0, + tokens_burnt: 3.0346589753880006e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "97qWg5ULeALxGGNiBjAdtvbrWoFRsvPsy7ayhJECZgjm", + included_in_block_hash: "x9s2i14ZFBCpEm1bsu9euA2GRaHZBkQTS2SR9ywQJuw", + block_timestamp: "1729696298090352442", + block: { block_height: 131021046 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.0346589753880006e20, + args: '{"proposal_id": 101}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.357287682179e20 }, + }, + { + id: "9465763691", + receipt_id: "E2i1mvXwZHBejraswuFchci7wfQneADkVLneTCEFvGaj", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HXdqgT3juLfLzFq7x5yoz3bsYQaDxssTPLhHDeUmbgz9", + block_height: 131021050, + block_timestamp: 1729696302441386000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "97qWg5ULeALxGGNiBjAdtvbrWoFRsvPsy7ayhJECZgjm", + included_in_block_hash: "x9s2i14ZFBCpEm1bsu9euA2GRaHZBkQTS2SR9ywQJuw", + block_timestamp: "1729696298090352442", + block: { block_height: 131021046 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 7.357287682179e20 }, + }, + { + id: "9465817356", + receipt_id: "DjRwabW3fm4pp8yjkJ19RR6TLSDxD9xYTVpyq42y5tHQ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "29TM2LxgSknmnirojTofsrGU2jT7SiseGFYUgJLYiVCB", + block_height: 131021210, + block_timestamp: 1729696479632381000, + }, + receipt_outcome: { + gas_burnt: 2727931734637.0, + tokens_burnt: 2.727931734637e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7YJxFGX8PEaWF2CBejFkqfXzHtD5ZnS1GcrKjN7Bog3j", + included_in_block_hash: "5yUQNmGyaBsSXmMesS9fEvQKDAj9MKcNnWWykSKnoWi3", + block_timestamp: "1729696478476812340", + block: { block_height: 131021209 }, + receipt_conversion_tokens_burnt: "31740550814000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.727931734637e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000000000000000000000", "token_id": "", "receiver_id": "megha19.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing threshold 5\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.045337242777e20 }, + }, + { + id: "9465897887", + receipt_id: "HPwLZfjuKxnoD77rBuZjUvAnPYHeS9pJ2P2Kn3XxDhbt", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DLaZcops3xm2nVtgC1y4dvDCUiNbJg4hCtHKBnKUqpfb", + block_height: 131021456, + block_timestamp: 1729696755666443800, + }, + receipt_outcome: { + gas_burnt: 2986686312737.0, + tokens_burnt: 2.986686312737e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9j7CrzkgRSB9ny2DrWoMznyWbUZunTgt8EkjJgEeBMf5", + included_in_block_hash: "9q3HMkAnn4Aw4ccYMV7nNndZUHL6WAEHBisutqnoEiM2", + block_timestamp: "1729696754566412675", + block: { block_height: 131021455 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.986686312737e20, + args: '{"id": 102, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.296843896197e20 }, + }, + { + id: "9465898866", + receipt_id: "2Q39RHAric1exJ31uZLjopXcNnCKc4t8SuMzgH7qXqUB", + predecessor_account_id: "meghagoel.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5FbtohQj8HKe2avTWFGxEscXUoayX4pE7xzYoZCEHDg", + block_height: 131021477, + block_timestamp: 1729696778274181600, + }, + receipt_outcome: { + gas_burnt: 3166985938928.0, + tokens_burnt: 3.166985938928e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "51TNDJki1sZhNCuhHGVQobYE7LRb2MqkSJZzczT2RMwo", + included_in_block_hash: "127Djb7xSqUvyh4nozQu9JLPFVnXLmDP4b4GXpvfQ6BT", + block_timestamp: "1729696777231954384", + block: { block_height: 131021476 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.166985938928e20, + args: '{"id": 102, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.700326084888e20 }, + }, + { + id: "9465898915", + receipt_id: "9dEyfpUDuZzzYsuLFVcFmi3Kem3Xtvc4aejmy1wMqbEg", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3iPJN9hEVuUjGP8aF5B9CciDPLwUeRXsYeV2AYpiwDWk", + block_height: 131021478, + block_timestamp: 1729696779441702400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "51TNDJki1sZhNCuhHGVQobYE7LRb2MqkSJZzczT2RMwo", + included_in_block_hash: "127Djb7xSqUvyh4nozQu9JLPFVnXLmDP4b4GXpvfQ6BT", + block_timestamp: "1729696777231954384", + block: { block_height: 131021476 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.700326084888e20 }, + }, + { + id: "9639406315", + receipt_id: "J99Q56yYDsVkBud2LsjNHGqKfgpXrneBBLLj9nWqVRYo", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "98p6VmzkBVmra3cW9xYEE7pg1co3Vru8dUmYEoNG8FVh", + block_height: 131498940, + block_timestamp: 1730232464260161800, + }, + receipt_outcome: { + gas_burnt: 3663177274051.0, + tokens_burnt: 3.663177274051e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CABnU4dFHHjeqos2KN7GQf935XhswhTEoLig6KZBHDAc", + included_in_block_hash: "DFfRWVMxMBw7X1qhMtPLHTdJB2GWdyMFi489RNy3p9es", + block_timestamp: "1730232463146452282", + block: { block_height: 131498939 }, + receipt_conversion_tokens_burnt: "43613795849000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.663177274051e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "meghagoel.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "2", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update Policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.0993152325410003e20 }, + }, + { + id: "9639407372", + receipt_id: "HjQemuKA2njFhPnb837QcsfvsGdHgmjYaSgVwHMrZuF4", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7WX3PGoTkAyksKVX8ErsqCcMUKzuQyUByKr32LDpiHEM", + block_height: 131498944, + block_timestamp: 1730232468677614300, + }, + receipt_outcome: { + gas_burnt: 4404904202595.0, + tokens_burnt: 4.404904202595e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DuPkW73eFtc8RDmw7GAppq6EwKtZva6ynEc9aYuTyp2E", + included_in_block_hash: "3MS8L1YpRKjkH1L7HXR24fuVLZHSDtqMQaLD8Wgeu8Ph", + block_timestamp: "1730232467595634549", + block: { block_height: 131498943 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.404904202595e20, + args: '{"id": 103, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.9382920322700005e20 }, + }, + { + id: "9639407635", + receipt_id: "eNULEYjRbfKVfcZHWbdyUnuvEe6JhZFooq3fhb7R9WH", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2oj7XAHVPraTEna9B9zyUqfDSw7DdGFXqWRVPBQkAsAt", + block_height: 131498945, + block_timestamp: 1730232469782775800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "DuPkW73eFtc8RDmw7GAppq6EwKtZva6ynEc9aYuTyp2E", + included_in_block_hash: "3MS8L1YpRKjkH1L7HXR24fuVLZHSDtqMQaLD8Wgeu8Ph", + block_timestamp: "1730232467595634549", + block: { block_height: 131498943 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.9382920322700005e20 }, + }, + { + id: "9639458825", + receipt_id: "28H8eYJAnHpwbjPEwRHDppeY6F3VrV6NwMXJRTpdjS7N", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DKXxkB2zz4VZsXRsFLzjwZfYxbo9vsFHw6HciQ8Wp8L7", + block_height: 131499093, + block_timestamp: 1730232632654532900, + }, + receipt_outcome: { + gas_burnt: 3621711406273.0, + tokens_burnt: 3.621711406273e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9x3jrnoDvjg5zi4rpk3kc5oRqKYFqeNcJA3HmjWgsA4i", + included_in_block_hash: "89VNasQgbeoYTaagYMuDRUWvZ8euhvgzJyNVdoM9u2pH", + block_timestamp: "1730232631558681938", + block: { block_height: 131499092 }, + receipt_conversion_tokens_burnt: "43613795849000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.621711406273e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "meghagoel.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update Policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.0578493647629995e20 }, + }, + { + id: "9639461256", + receipt_id: "Cd3yrXWzZRiCtuxR9XVhoBGDhFzpbkD7zEUM8wwm3DxZ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "19oywfPKTuYTH75r6KzjSaRbYDY92j3FmUM8dE6NEKi", + block_height: 131499097, + block_timestamp: 1730232637084253000, + }, + receipt_outcome: { + gas_burnt: 4363438334817.0, + tokens_burnt: 4.363438334817e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GyYeSTKWfej17Vr8Gr6bGntDYTbZWpLAoVzpm3P7fUVt", + included_in_block_hash: "AttjBL5kZ7LSRFGVnnaSqihc8hwgKRTh34GTTFihZLx4", + block_timestamp: "1730232635894452860", + block: { block_height: 131499096 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.363438334817e20, + args: '{"id": 104, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.896826164492e20 }, + }, + { + id: "9639462362", + receipt_id: "4oEM29kgXZX8HdQmyzxZLuQehx4WMDvxHDvb3RywFsMY", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "67nfuckPf5WE9MsHf8k8z16o7MVcLuDMe5zSSvt2unEL", + block_height: 131499098, + block_timestamp: 1730232638220891100, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "GyYeSTKWfej17Vr8Gr6bGntDYTbZWpLAoVzpm3P7fUVt", + included_in_block_hash: "AttjBL5kZ7LSRFGVnnaSqihc8hwgKRTh34GTTFihZLx4", + block_timestamp: "1730232635894452860", + block: { block_height: 131499096 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.896826164492e20 }, + }, + { + id: "9657516724", + receipt_id: "F741xFJXAHSpb8KZgVqAuFsq6qP7iNRCEBGXji83HXgX", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "85riUGXAf1fqzc5Wz77exQpavyftf3GJC4yqgLUhrVwk", + block_height: 131549384, + block_timestamp: 1730288755640145700, + }, + receipt_outcome: { + gas_burnt: 3762999910213.0, + tokens_burnt: 3.762999910213e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GgqJWiXjQmF75T3by3r5wt8vUaLLRtY9hphhSn3k1Eep", + included_in_block_hash: "BYQkDXwMJRpVo34LSo7pNQ5m4dJAKnxr77HFERRL4o4T", + block_timestamp: "1730288754488265098", + block: { block_height: 131549383 }, + receipt_conversion_tokens_burnt: "43842677681000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.762999910213e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "meghagoel.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [2, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update Policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.201426687023e20 }, + }, + { + id: "9657517540", + receipt_id: "Gz7LtrejQ3vpdDBLwNHxsrFc1f5AjdxfWhab7wPMEkoD", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "82mQSnHjAbumTvSBbaXDiLJDE3LDVhnxzTwdgEqZ9ber", + block_height: 131549388, + block_timestamp: 1730288760503110000, + }, + receipt_outcome: { + gas_burnt: 4328705902143.0, + tokens_burnt: 4.328705902143e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4YovMYz3XAdD3TgWXPr7DaMxWz7hminhTUNrKTU5xRE5", + included_in_block_hash: "2qpTKBTWm2gzvBzJ7WFVbizBhgrcCLT7cTh8FVSipLwL", + block_timestamp: "1730288759360890232", + block: { block_height: 131549387 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.328705902143e20, + args: '{"id": 105, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.862093731818e20 }, + }, + { + id: "9657517958", + receipt_id: "8B89y2dq6cF24cE4oYezEWk2NE8gbmzQ7auJAd4xTJUY", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "J2eQCFBeoB2U169oS1FEqnnRJUGh6FdFTQZnpyGZ9g4o", + block_height: 131549389, + block_timestamp: 1730288761371390200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "4YovMYz3XAdD3TgWXPr7DaMxWz7hminhTUNrKTU5xRE5", + included_in_block_hash: "2qpTKBTWm2gzvBzJ7WFVbizBhgrcCLT7cTh8FVSipLwL", + block_timestamp: "1730288759360890232", + block: { block_height: 131549387 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.862093731818e20 }, + }, + { + id: "9657577698", + receipt_id: "8isqvrPuEJon4Xjep2gLAK5yCQevhddtXoJ1hTkbdenv", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "A7UviBdada59hcTZSktRGeSU7ygtuBdHvB8iprfUUVNT", + block_height: 131549598, + block_timestamp: 1730288992722970600, + }, + receipt_outcome: { + gas_burnt: 3849887639077.0, + tokens_burnt: 3.849887639077e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CZTRLQN6WzTjxDVU8PWAPHL6BZBrpj46jiNRutUKgJQN", + included_in_block_hash: "5rCCyYaEEKngPLaVwABVBDwrd1QzZ8XyV3Mu29wXqCfS", + block_timestamp: "1730288990193851106", + block: { block_height: 131549596 }, + receipt_conversion_tokens_burnt: "43899898139000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.849887639077e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "meghagoel.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update Policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.288886620467e20 }, + }, + { + id: "9657579173", + receipt_id: "6fi2saW5SEy9tjwqhNoZ5gStriCUEDiJT6E9A6tmsmgk", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HXCa5NfDNufdKSM1UrSemUhqWZwqRnwVrzy4cGoeBd3j", + block_height: 131549601, + block_timestamp: 1730288996493772500, + }, + receipt_outcome: { + gas_burnt: 4330769374191.0, + tokens_burnt: 4.330769374191e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "B6HonQkz7HN3MYZdioLZuL5mzy8M8MAUPdJWCLuhBNpc", + included_in_block_hash: "57c3hqzegiZbPVFqAcc3hc3bn1je4CAijv7NGNA6AJa", + block_timestamp: "1730288995284962424", + block: { block_height: 131549600 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.330769374191e20, + args: '{"id": 106, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.8641572038660004e20 }, + }, + { + id: "9657580349", + receipt_id: "8qk9iBLgyW5ChRjF3nHdQdBr9k5uZzAjCxRXTUX7nZeN", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HM4vp46Hx1tnuhNWbzVcEf2GRXUJ2EddDY4dEgiQwfzz", + block_height: 131549602, + block_timestamp: 1730288997703550200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "B6HonQkz7HN3MYZdioLZuL5mzy8M8MAUPdJWCLuhBNpc", + included_in_block_hash: "57c3hqzegiZbPVFqAcc3hc3bn1je4CAijv7NGNA6AJa", + block_timestamp: "1730288995284962424", + block: { block_height: 131549600 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.8641572038660004e20 }, + }, + { + id: "9872698821", + receipt_id: "7TZucsv4JThemxzHpMjDpdmhtbnsikz7S7a7A9uXjfB6", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7ZUDhJ9gRtibHJuSvh75tozg4YKP1bK3JbD88hygUJLB", + block_height: 132098746, + block_timestamp: 1730907018882665000, + }, + receipt_outcome: { + gas_burnt: 3853958283405.0, + tokens_burnt: 3.853958283405e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GpAT77RNtWHakaoR1QtuqcDcr7cNZpBekMfmP9bJpHmG", + included_in_block_hash: "FUDNJmutGXxSipUcHSswu9BWAztLnvwFDAxgDABeiJPj", + block_timestamp: "1730907017404255470", + block: { block_height: 132098745 }, + receipt_conversion_tokens_burnt: "43966655340000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 3.853958283405e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize"], "vote_policy": {}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["megha19.near", "meghagoel.near", "freski.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.293624836805e20 }, + }, + { + id: "9872699814", + receipt_id: "EHHKUnJEZCTXrUExVreLDhFyBkyFJSmV5aAGwPN5jUCs", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9eP5K7LBHcUKLSbLUXj9H7izXesuC1EjinqgzSvLcPsb", + block_height: 132098750, + block_timestamp: 1730907023625926100, + }, + receipt_outcome: { + gas_burnt: 4340477065850.0, + tokens_burnt: 4.34047706585e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9pcfKRDBmspMsChfDf6YMVemNNJ6KY6WiJmEBEBJYoSu", + included_in_block_hash: "Cep98QVLuUByByu1UvSNV6JHhHZXzafKFTmwHW94Ax9u", + block_timestamp: "1730907022329360387", + block: { block_height: 132098749 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.34047706585e20, + args: '{"id": 107, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.873864895525e20 }, + }, + { + id: "9872700082", + receipt_id: "HZHGNgBDMRHBLceViMSiehC8Ew5wTudoj7VGw22MzbJn", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7zrxCK85jNuFqaA4WTXYVEWEe5qHRnjsEvH71fXvPcSg", + block_height: 132098751, + block_timestamp: 1730907024993283300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "9pcfKRDBmspMsChfDf6YMVemNNJ6KY6WiJmEBEBJYoSu", + included_in_block_hash: "Cep98QVLuUByByu1UvSNV6JHhHZXzafKFTmwHW94Ax9u", + block_timestamp: "1730907022329360387", + block: { block_height: 132098749 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.873864895525e20 }, + }, + { + id: "9937793188", + receipt_id: "Dt4uSvB8LT4umbRq84doqFH7LDmw2i77TT2g7qQPRUj8", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "FahhqhhecEgvau2PKJt64NL2Y6ktaAp6U1dMTaNQVssX", + block_height: 132241685, + block_timestamp: 1731083374324296700, + }, + receipt_outcome: { + gas_burnt: 2748377028313.0, + tokens_burnt: 2.748377028313e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CRSMoU5wfQkLVPeShowipjUT6ycTzNGsFSAZmT96Zj1w", + included_in_block_hash: "91osS3DUzWdbZGHQe1YpZZv8uAqwmZvNhbzgrWmAFQjF", + block_timestamp: "1731083373020563387", + block: { block_height: 132241684 }, + receipt_conversion_tokens_burnt: "32184009363500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.748377028313e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJhbW91bnQiOiIxMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==", "deposit": "0", "method_name": "unstake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.0702171219480006e20 }, + }, + { + id: "9937806152", + receipt_id: "B13VvmVstJLMuZxjVv6GaaGRCtAx9JaWzQJqsPr7jFZJ", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5SzPW9hPvjepAbQeoo4TaKT9f5oKnVWWQyvTNhpbqLKt", + block_height: 132241715, + block_timestamp: 1731083409048662800, + }, + receipt_outcome: { + gas_burnt: 3766451137495.0, + tokens_burnt: 3.766451137495e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7Li9UBVKD7FcsA16iF55z8ckinvtx9x6UsVqSAJS1Akh", + included_in_block_hash: "DuRy1Caw6FkrkK2onKv16vsGyJ4vuc8pYETBBvMUVhPL", + block_timestamp: "1731083407915413427", + block: { block_height: 132241714 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.766451137495e20, + args: '{"id": 108, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2293342759875e21 }, + }, + { + id: "9937807027", + receipt_id: "AjUbPsHS1gCA6A6qSNCuQ4xEoyAGFWBpq5NtSdKs8KF1", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "astro-stakers.poolv1.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6Ni3Z34C9rpM6Nvg56yLbykQJcoFgGtmrRuqbS9uUcDW", + block_height: 132241716, + block_timestamp: 1731083410024820700, + }, + receipt_outcome: { + gas_burnt: 3045302548294.0, + tokens_burnt: 3.045302548294e20, + executor_account_id: "astro-stakers.poolv1.near", + status: true, + }, + transaction_hash: "7Li9UBVKD7FcsA16iF55z8ckinvtx9x6UsVqSAJS1Akh", + included_in_block_hash: "DuRy1Caw6FkrkK2onKv16vsGyJ4vuc8pYETBBvMUVhPL", + block_timestamp: "1731083407915413427", + block: { block_height: 132241714 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "unstake", + deposit: 0.0, + fee: 3.045302548294e20, + args: '{"amount": "100000000000000000000000"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2293342759875e21 }, + }, + { + id: "9937807034", + receipt_id: "7n8sXisvBxFvzQFj2iMz7X17oSch7jBTT1WrQjDo1CgD", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6Ni3Z34C9rpM6Nvg56yLbykQJcoFgGtmrRuqbS9uUcDW", + block_height: 132241716, + block_timestamp: 1731083410024820700, + }, + receipt_outcome: { + gas_burnt: 3060235156571.0, + tokens_burnt: 3.060235156571e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7Li9UBVKD7FcsA16iF55z8ckinvtx9x6UsVqSAJS1Akh", + included_in_block_hash: "DuRy1Caw6FkrkK2onKv16vsGyJ4vuc8pYETBBvMUVhPL", + block_timestamp: "1731083407915413427", + block: { block_height: 132241714 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.060235156571e20, + args: '{"proposal_id": 108}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2293342759875e21 }, + }, + { + id: "9937807875", + receipt_id: "GcA8b7iXEKG8XaRb72acbtSFBT8oENpo5vTH4Jt9gYKp", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "freski.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8Li7DLGuHdVx5DE13R2R8bUrCWrPL8u1mzPy5XDkrS5a", + block_height: 132241718, + block_timestamp: 1731083412171026200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "freski.near", + status: true, + }, + transaction_hash: "7Li9UBVKD7FcsA16iF55z8ckinvtx9x6UsVqSAJS1Akh", + included_in_block_hash: "DuRy1Caw6FkrkK2onKv16vsGyJ4vuc8pYETBBvMUVhPL", + block_timestamp: "1731083407915413427", + block: { block_height: 132241714 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2293342759875e21 }, + }, + { + id: "9937844620", + receipt_id: "FgaQM3YEJivsidgghed8zhdN4DaQq5bHSsAgjAcXA28k", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6T79Hc7N6Ev44TFJ8yNsWm4AUf8s7ubao1Tw3ksVUGVj", + block_height: 132241800, + block_timestamp: 1731083516106650600, + }, + receipt_outcome: { + gas_burnt: 2746123278609.0, + tokens_burnt: 2.746123278609e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4vCJ2kpEk3T3NqEjHrdswndh4unwZFDSMr3jNDa2hKJU", + included_in_block_hash: "Aesd5wy3F2UKgvxDyoEkudQu9idrwouLPyAjjmkvEdS5", + block_timestamp: "1731083514873978394", + block: { block_height: 132241799 }, + receipt_conversion_tokens_burnt: "32093410305000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.746123278609e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "", "deposit": "100000000000000000000000", "method_name": "deposit_and_stake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.0670573816589995e20 }, + }, + { + id: "9937856683", + receipt_id: "E9vU5XUNut2UGoVpbXGJV9Eye4J2hjJuEC35yaeqZCj", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6QtihFiGqYzMHMBrJC1wfb1u9LEXxCx5eJH8GRMgQwFu", + block_height: 132241825, + block_timestamp: 1731083548060210700, + }, + receipt_outcome: { + gas_burnt: 3675945038254.0, + tokens_burnt: 3.675945038254e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "acqcGEMYBofTpxpWzkmZPz6EA2NcLfryx97oeH9xy2S", + included_in_block_hash: "J2infZRPHeMz6JJg2W2pL9BtYui9E574t6RJjQHjy9cD", + block_timestamp: "1731083547018169631", + block: { block_height: 132241824 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.675945038254e20, + args: '{"id": 109, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2533224253612e21 }, + }, + { + id: "9937857332", + receipt_id: "F2uUkEYsdgHWWu876aL289RXa7dYiwuTcacA89mZjrS8", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "astro-stakers.poolv1.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Brx9xR9mjtHUfQSigZ1kZ2hSYHcxBo92z9mYiBUfyDHQ", + block_height: 132241826, + block_timestamp: 1731083549157412900, + }, + receipt_outcome: { + gas_burnt: 3422519165951.0, + tokens_burnt: 3.422519165951e20, + executor_account_id: "astro-stakers.poolv1.near", + status: true, + }, + transaction_hash: "acqcGEMYBofTpxpWzkmZPz6EA2NcLfryx97oeH9xy2S", + included_in_block_hash: "J2infZRPHeMz6JJg2W2pL9BtYui9E574t6RJjQHjy9cD", + block_timestamp: "1731083547018169631", + block: { block_height: 132241824 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "deposit_and_stake", + deposit: 1e23, + fee: 3.422519165951e20, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2533224253612e21 }, + }, + { + id: "9937857335", + receipt_id: "6f7eXy2VFS3xigkGCYqnXuXHMcg8RCNnR8vHpJbnzELq", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "Brx9xR9mjtHUfQSigZ1kZ2hSYHcxBo92z9mYiBUfyDHQ", + block_height: 132241826, + block_timestamp: 1731083549157412900, + }, + receipt_outcome: { + gas_burnt: 3013406131892.0, + tokens_burnt: 3.013406131892e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "acqcGEMYBofTpxpWzkmZPz6EA2NcLfryx97oeH9xy2S", + included_in_block_hash: "J2infZRPHeMz6JJg2W2pL9BtYui9E574t6RJjQHjy9cD", + block_timestamp: "1731083547018169631", + block: { block_height: 132241824 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.013406131892e20, + args: '{"proposal_id": 109}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2533224253612e21 }, + }, + { + id: "9937858426", + receipt_id: "4hDXgM9EHNDXQ7Xoezx9Nh35kAcpJFE5U7nhHviXNxrx", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "freski.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "68wSD1ra7wyN17xD1qhK1uQHK6ERGk6mJUYHFcZA2Tpd", + block_height: 132241828, + block_timestamp: 1731083551409171000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "freski.near", + status: true, + }, + transaction_hash: "acqcGEMYBofTpxpWzkmZPz6EA2NcLfryx97oeH9xy2S", + included_in_block_hash: "J2infZRPHeMz6JJg2W2pL9BtYui9E574t6RJjQHjy9cD", + block_timestamp: "1731083547018169631", + block: { block_height: 132241824 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2533224253612e21 }, + }, + { + id: "9967671296", + receipt_id: "AKo2bTofCHAtY7N577XVa5KSTusvkTb2bgFhXxPntfvA", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2YPM5BTv3ThzAULLRnemFrBPLWxURa8kNbkRm7x353ej", + block_height: 132310069, + block_timestamp: 1731165625338553000, + }, + receipt_outcome: { + gas_burnt: 2829055014165.0, + tokens_burnt: 2.8290550141650004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "96UuBj96EjsJkKCfbaXi6cbKmMWDfnjAHv1SQx9j4RSG", + included_in_block_hash: "12yAbACNuhu4ZmLveEttWnd4fyHECTe24DbvBUHQZjjE", + block_timestamp: "1731165624538407245", + block: { block_height: 132310068 }, + receipt_conversion_tokens_burnt: "32093410305000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8290550141650004e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "", "deposit": "100000000000000000000000", "method_name": "deposit_and_stake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.149989117215e20 }, + }, + { + id: "9967727468", + receipt_id: "FFQMUx2focDGV9knrusa8qQm8tQsxeuSBswQbLqnCKHF", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8hLFfEEA2fTrr7WV69Nmk61KLCLik22rr7UAS11A7di8", + block_height: 132310223, + block_timestamp: 1731165818304447000, + }, + receipt_outcome: { + gas_burnt: 3675945038254.0, + tokens_burnt: 3.675945038254e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "24cHvavuaVM1ARJS98nh2EgWVhRfFpRsD5ogaYd9qf1A", + included_in_block_hash: "CDt8LBJPnmkmCUESvZ3s6fmn8yrkPxZ8mZfjNtFAvjuU", + block_timestamp: "1731165817225133161", + block: { block_height: 132310222 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.675945038254e20, + args: '{"id": 110, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2533350958036e21 }, + }, + { + id: "9967727997", + receipt_id: "GYrzrGSEQrSneW8grtgoyyvCgs4LkujxW3w2Z7YNDJFD", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "astro-stakers.poolv1.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8CA59X8r1jvxEi6uG5JDJU9ypZBXgm9JazLHmVpu5bsR", + block_height: 132310224, + block_timestamp: 1731165819310336000, + }, + receipt_outcome: { + gas_burnt: 3491755650005.0, + tokens_burnt: 3.4917556500050005e20, + executor_account_id: "astro-stakers.poolv1.near", + status: true, + }, + transaction_hash: "24cHvavuaVM1ARJS98nh2EgWVhRfFpRsD5ogaYd9qf1A", + included_in_block_hash: "CDt8LBJPnmkmCUESvZ3s6fmn8yrkPxZ8mZfjNtFAvjuU", + block_timestamp: "1731165817225133161", + block: { block_height: 132310222 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "deposit_and_stake", + deposit: 1e23, + fee: 3.4917556500050005e20, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2533350958036e21 }, + }, + { + id: "9967728001", + receipt_id: "8TLRbyuHUA164mKwprcApQ6iz8nn9eVdJi11P85k2zK4", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8CA59X8r1jvxEi6uG5JDJU9ypZBXgm9JazLHmVpu5bsR", + block_height: 132310224, + block_timestamp: 1731165819310336000, + }, + receipt_outcome: { + gas_burnt: 3013406131892.0, + tokens_burnt: 3.013406131892e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "24cHvavuaVM1ARJS98nh2EgWVhRfFpRsD5ogaYd9qf1A", + included_in_block_hash: "CDt8LBJPnmkmCUESvZ3s6fmn8yrkPxZ8mZfjNtFAvjuU", + block_timestamp: "1731165817225133161", + block: { block_height: 132310222 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.013406131892e20, + args: '{"proposal_id": 110}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2533350958036e21 }, + }, + { + id: "9967728573", + receipt_id: "7Xe4zDJVDN9qBqrtDjWQgi2ugd2omwh4nozErBAqz1wx", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "freski.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2Bnpaq7Fg5wUmeu3JgcppMBnTh4ZD5dGcdMSc8FWFcsT", + block_height: 132310226, + block_timestamp: 1731165821827648800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "freski.near", + status: true, + }, + transaction_hash: "24cHvavuaVM1ARJS98nh2EgWVhRfFpRsD5ogaYd9qf1A", + included_in_block_hash: "CDt8LBJPnmkmCUESvZ3s6fmn8yrkPxZ8mZfjNtFAvjuU", + block_timestamp: "1731165817225133161", + block: { block_height: 132310222 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2533350958036e21 }, + }, + { + id: "9968045364", + receipt_id: "4tQMnh6pt2rsy3pHpoBWyAB4YxpWELnaxpJ6J6JcQL1e", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "7nZSGxZoqTPXBUnqiBZNNe95JjRe8QM69i7dMyp8XtKF", + block_height: 132310982, + block_timestamp: 1731166694426260700, + }, + receipt_outcome: { + gas_burnt: 2831308763869.0, + tokens_burnt: 2.8313087638690002e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HcACWdCokDeCfLUmxj8fhwEf6VJu4PrymYndD59kqs41", + included_in_block_hash: "8uMPUdzVyHyA6asmqZfrb3rhAhphBV8U6X52cwLVkj8z", + block_timestamp: "1731166693120092871", + block: { block_height: 132310981 }, + receipt_conversion_tokens_burnt: "32184009363500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8313087638690002e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJhbW91bnQiOiIxMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==", "deposit": "0", "method_name": "unstake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.153148857504e20 }, + }, + { + id: "9968059918", + receipt_id: "6CGYjpXRfVfFtMJNLmC3cxxkPokefkCYnstuqWzQzwsQ", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3o1TM5WMqoeRDg5gCruSN7yk29o3ZU9nJHCTt3LNSP9o", + block_height: 132311026, + block_timestamp: 1731166742899153400, + }, + receipt_outcome: { + gas_burnt: 3766451137495.0, + tokens_burnt: 3.766451137495e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5kSE29dnzQcP1isKPTkPAHxLvGdse8fWqJDSxfATKSEj", + included_in_block_hash: "9Gx1nEGRs8TWReX4SLkR5DrvMQ8vfTJaNPBs4suz2EH4", + block_timestamp: "1731166741806103761", + block: { block_height: 132311025 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.766451137495e20, + args: '{"id": 111, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2268953670759e21 }, + }, + { + id: "9968060378", + receipt_id: "9B2dNJzovrMX5e8LmxEiKY1AxVbkRjKGWoembFB84QqY", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "astro-stakers.poolv1.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8UdwdrmzpdcDdQt7cehppkVrAz2JjVj3eQeHTKCKiHQb", + block_height: 132311027, + block_timestamp: 1731166743697427200, + }, + receipt_outcome: { + gas_burnt: 3048557371030.0, + tokens_burnt: 3.04855737103e20, + executor_account_id: "astro-stakers.poolv1.near", + status: true, + }, + transaction_hash: "5kSE29dnzQcP1isKPTkPAHxLvGdse8fWqJDSxfATKSEj", + included_in_block_hash: "9Gx1nEGRs8TWReX4SLkR5DrvMQ8vfTJaNPBs4suz2EH4", + block_timestamp: "1731166741806103761", + block: { block_height: 132311025 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "unstake", + deposit: 0.0, + fee: 3.04855737103e20, + args: '{"amount": "100000000000000000000000"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2268953670759e21 }, + }, + { + id: "9968060379", + receipt_id: "7RLrrf5fewHHjv1XNt9pNZ5HGAof4VeAfxEK9YfbhCoG", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8UdwdrmzpdcDdQt7cehppkVrAz2JjVj3eQeHTKCKiHQb", + block_height: 132311027, + block_timestamp: 1731166743697427200, + }, + receipt_outcome: { + gas_burnt: 3101701024349.0, + tokens_burnt: 3.101701024349e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "5kSE29dnzQcP1isKPTkPAHxLvGdse8fWqJDSxfATKSEj", + included_in_block_hash: "9Gx1nEGRs8TWReX4SLkR5DrvMQ8vfTJaNPBs4suz2EH4", + block_timestamp: "1731166741806103761", + block: { block_height: 132311025 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.101701024349e20, + args: '{"proposal_id": 111}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2268953670759e21 }, + }, + { + id: "9968060712", + receipt_id: "Hok2byWwAQym1HvuzvmuurgwGCifcCojQpzE2kiV5iFQ", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "freski.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "A5cJi2XvtCvajpC284n4GLSTGUsE6y91bcy1fHWY8NmQ", + block_height: 132311029, + block_timestamp: 1731166746001639400, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "freski.near", + status: true, + }, + transaction_hash: "5kSE29dnzQcP1isKPTkPAHxLvGdse8fWqJDSxfATKSEj", + included_in_block_hash: "9Gx1nEGRs8TWReX4SLkR5DrvMQ8vfTJaNPBs4suz2EH4", + block_timestamp: "1731166741806103761", + block: { block_height: 132311025 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2268953670759e21 }, + }, + { + id: "9968066800", + receipt_id: "41xWTUqX7aeAZjotGWfawMBdkVtvCzx2FGTsKthXhwau", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9NzGQNY6JVPzBKaYo1JHneHyMiKvxAmBHZHYvNUGWFSM", + block_height: 132311056, + block_timestamp: 1731166776491221000, + }, + receipt_outcome: { + gas_burnt: 2810879954867.0, + tokens_burnt: 2.8108799548669998e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "76tcfj4jMnWpwqZ3TvPCkjVbpb3mGah9s16ESnvWWnUZ", + included_in_block_hash: "Ct696NZsrNztEQMfzrN1AvrRG1C5UTu6t8BJDAdavbJz", + block_timestamp: "1731166774973657538", + block: { block_height: 132311055 }, + receipt_conversion_tokens_burnt: "32031421475500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8108799548669998e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJhbW91bnQiOiIwIn0=", "deposit": "0", "method_name": "unstake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.1311941696220004e20 }, + }, + { + id: "9968071866", + receipt_id: "58wmhctee5VWqGyrkYJQQk351nbZ6H11GHhdbjoEFtPt", + predecessor_account_id: "freski.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5nCNja6xtpDUw58zrdN3Q7hovrAPLhz8rsJq2HUHg16o", + block_height: 132311079, + block_timestamp: 1731166802311923700, + }, + receipt_outcome: { + gas_burnt: 3224903944396.0, + tokens_burnt: 3.2249039443960005e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "pGhAU8Wo2CDhde9ti6aD9jbuxCnvovyfyV7q1dYd3pk", + included_in_block_hash: "9WG42Y4viQ3L7ojELy9W9v8yw9YU98e8PDDifZ6fthyz", + block_timestamp: "1731166801116539698", + block: { block_height: 132311078 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.2249039443960005e20, + args: '{"id": 112, "action": "VoteReject"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.758244090356e20 }, + }, + { + id: "9968072188", + receipt_id: "F3bws6Mttth9jSG6bKQyEinvohwP8GM3QHLiLSvRufYL", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "freski.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "H55krvFqfDqmbFRjmq4gKTdz7cqcyu1DjweZnRhwgzZX", + block_height: 132311080, + block_timestamp: 1731166803333462500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "freski.near", + status: true, + }, + transaction_hash: "pGhAU8Wo2CDhde9ti6aD9jbuxCnvovyfyV7q1dYd3pk", + included_in_block_hash: "9WG42Y4viQ3L7ojELy9W9v8yw9YU98e8PDDifZ6fthyz", + block_timestamp: "1731166801116539698", + block: { block_height: 132311078 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.758244090356e20 }, + }, + { + id: "10141373741", + receipt_id: "Dw4fe7zYAzKbPxBNkMGmjo4XWvmFxLdLzhcjqnvz9oB6", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2vyS7dZZvHECXbBkg15VJY5q4oBHn54o47YziWtaepRk", + block_height: 132751163, + block_timestamp: 1731674552392744000, + }, + receipt_outcome: { + gas_burnt: 2225363426046.0, + tokens_burnt: 2.2253634260460002e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "HNxt6pzkK24umVX7kfK8HvrJ8pwcnRE3fPp7fgT38hRL", + included_in_block_hash: "8P1Xi7tDdyjHD9f82hZMuhjyo3CMT43y3bKxhNazjZ1u", + block_timestamp: "1731674551161124853", + block: { block_height: 132751162 }, + receipt_conversion_tokens_burnt: "31010989974500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.2253634260460002e20, + args: '{"id": 77, "action": "VoteRemove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.535473325791e20 }, + }, + { + id: "10221362690", + receipt_id: "mGYnuc4Pd5DYhCmqH8KWT54GHtZGT2hmoiU2htGQrMK", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EwzCZoBHvZJCR6dv8MYnLWNYeCYCqa2JQ2kUizRooEgP", + block_height: 132966550, + block_timestamp: 1731917343777140500, + }, + receipt_outcome: { + gas_burnt: 2750542007327.0, + tokens_burnt: 2.7505420073270002e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "6g3W25rEZEDxx3ZEhQyzzYM5B34ochT37W1HeUppYDnQ", + included_in_block_hash: "6kMVzU4Tkh1UYnEEGCL4W5cw5ZwmAYzRmn3UKuUhe7Bj", + block_timestamp: "1731917342650042995", + block: { block_height: 132966549 }, + receipt_conversion_tokens_burnt: "32517795368500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.7505420073270002e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "200000", "token_id": "usdt.tether-token.near", "receiver_id": "maguila.near"}}, "description": "{\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-10-14 2024-11-10\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-10-14 2024-11-10\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\":252}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.075719961012e20 }, + }, + { + id: "10221376958", + receipt_id: "7j6EAFfVdLtQYSFiV4wkHNAnzWcvcBP1uWy3XwJrSNf1", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GDAXThHruF5rbbhRipxwJDuaQVQPHBoK8cVvbAqcHRcm", + block_height: 132966569, + block_timestamp: 1731917364951132000, + }, + receipt_outcome: { + gas_burnt: 2889821732970.0, + tokens_burnt: 2.88982173297e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7UyHZZi8tGMf5PDeuoWvuPq4tRYwXaS9DbpEK7B19kmv", + included_in_block_hash: "CCMQSBLLBo7jQxC2SiwPqY7dAgDZZBvt6wawpsuEX4MV", + block_timestamp: "1731917363761757699", + block: { block_height: 132966568 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.88982173297e20, + args: '{"id": 113, "action": "VoteRemove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.19997931643e20 }, + }, + { + id: "10222766407", + receipt_id: "DnQ5Fesd7dCqkcBRwwadBJoTSiKsTRaDimhzL6fboaqJ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "As9zRjFbbs3k9UG4pxoy2o3mEtgQ6putT1w2a8AGR5Uh", + block_height: 132968706, + block_timestamp: 1731919916394594600, + }, + receipt_outcome: { + gas_burnt: 2824900147771.0, + tokens_burnt: 2.8249001477709998e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "AKienJ6xV7SfkH3crtsbAMRvBbenm2TiwLsrXVcEZtUG", + included_in_block_hash: "EjSApLjTnjXjQuyf8Z8tdXDfbATJCB9sgYPByXRTBxyB", + block_timestamp: "1731919915119717031", + block: { block_height: 132968705 }, + receipt_conversion_tokens_burnt: "32040958218500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8249001477709998e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "", "deposit": "0", "method_name": "deposit_and_stake"}], "receiver_id": "bisontrails.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"Testing delete\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.145309729956e20 }, + }, + { + id: "10223016065", + receipt_id: "EVwUEVZT2yYXrQjK1MRN5ug6S4EJTFVpik6uFMTPsEto", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "93Xg5YiduUx7tSKNTJgMhRUDx5BZZHndKCYVU92i7J11", + block_height: 132969003, + block_timestamp: 1731920292943543800, + }, + receipt_outcome: { + gas_burnt: 2881363929322.0, + tokens_burnt: 2.881363929322e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CXZyck2aZRLcmNgvWAqewBiYDSwSmqbbjAq63k6yYvpn", + included_in_block_hash: "3sXd1Ef78AckkZE53Pm8KGLRPTVNawNND3tjh19mdrqW", + block_timestamp: "1731920291635012734", + block: { block_height: 132969002 }, + receipt_conversion_tokens_burnt: "31015758346000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 2.881363929322e20, + args: '{"id": 114, "action": "VoteRemove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.191521512782e20 }, + }, + { + id: "10223561156", + receipt_id: "G3k7EM5Z68R6A4hLEezgz6u91ByxXWq61cZoiahc3vJt", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4H77qUvmgWQpY3nGcsKFsocgRtMRcA2E3YWqTw4WgwbQ", + block_height: 132970137, + block_timestamp: 1731921611526669300, + }, + receipt_outcome: { + gas_burnt: 4181385964947.0, + tokens_burnt: 4.181385964947e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CKQ526ayqe9BTvLmrnKx4f85itmCPU5oSeGzCVBHVtXU", + included_in_block_hash: "FsLSMBYtiRwN5rsfAYyzcYRBNYR3aGr5Rd48hSQPp5uY", + block_timestamp: "1731921610474316671", + block: { block_height: 132970136 }, + receipt_conversion_tokens_burnt: "48143748774000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 4.181385964947e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "transfer:AddProposal", "config:Finalize", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["meghagoel.near", "freski.near", "megha19.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Update policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.662823452687e20 }, + }, + { + id: "10223703576", + receipt_id: "8MxXrtJ9KDLMMxpUCrpDzaZ2BbGv3DJeG29vo2YaU4Y9", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HHfN7wj9hMepnwmAvY3JRwv85iPN738eGDongd8JDR68", + block_height: 132970408, + block_timestamp: 1731921922848291000, + }, + receipt_outcome: { + gas_burnt: 4766255324247.0, + tokens_burnt: 4.7662553242470004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Gg6E3qZwLz1yoD3Urr2dqVrppZjkvGmuNpL52zmJVR7k", + included_in_block_hash: "HGSxCUWyTLadAxB78VVGJgCehUyJh5CsCyGmqvQRJGz4", + block_timestamp: "1731921921705748185", + block: { block_height: 132970407 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.7662553242470004e20, + args: '{"id": 115, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.299643153922e20 }, + }, + { + id: "10223704134", + receipt_id: "F3A9vkA3K3dDjw9ur8ThsZfUV5juphjD3bEbmRsgoz6d", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "B998A7Vjxr2sqNC7xuTsWmEjukGewTM9Ds8z9ZKEh2Mq", + block_height: 132970409, + block_timestamp: 1731921923899565800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "Gg6E3qZwLz1yoD3Urr2dqVrppZjkvGmuNpL52zmJVR7k", + included_in_block_hash: "HGSxCUWyTLadAxB78VVGJgCehUyJh5CsCyGmqvQRJGz4", + block_timestamp: "1731921921705748185", + block: { block_height: 132970407 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.299643153922e20 }, + }, + { + id: "10267188839", + receipt_id: "HY6g2CLQEjcJr8H2PQ3WggSNuUA1RyhQ1kvyyciB3wpQ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "9tmkZMA59Hark9tLrgQLmCJabCYa3GGYZ2TcRUGPVHYa", + block_height: 133074696, + block_timestamp: 1732042990840714500, + }, + receipt_outcome: { + gas_burnt: 4199218390995.0, + tokens_burnt: 4.199218390995e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "2VKB4k46UJ2wZwBCBCYXmuyvxoZjXBPyZhXpXmNYtJVV", + included_in_block_hash: "DBjRMEsddsSjhpG1cbVgv4ntCmw8TsrA9MJnzhRPxouU", + block_timestamp: "1732042989629242995", + block: { block_height: 133074695 }, + receipt_conversion_tokens_burnt: "48253421318500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 4.199218390995e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "*:VoteRemove", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["meghagoel.near", "freski.near", "megha19.near", "petersalomonsen.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.6817526041799996e20 }, + }, + { + id: "10267189476", + receipt_id: "4sZo3jaGm5qysVtaxE7UU2AZTfoviBH3eiAu9kR8JuFc", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "13CdbhRmDvFcE8eFap7TyeqeNkHcpQ19Bcf9o9c5FtSp", + block_height: 133074699, + block_timestamp: 1732042993869794000, + }, + receipt_outcome: { + gas_burnt: 4840765398361.0, + tokens_burnt: 4.840765398361e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "H678TmCirpe3TyGnALjTaXDH7fZDYRH5nJNoY8vBZadq", + included_in_block_hash: "DxLBNGodABBKzeei4uriybnFHS12xeDDHbXSiS7N51bx", + block_timestamp: "1732042992756041571", + block: { block_height: 133074698 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.840765398361e20, + args: '{"id": 116, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.3741532280359997e20 }, + }, + { + id: "10267189979", + receipt_id: "4CUUCxG3eXyAFeji563m5ZndpDQxZ1iX5v2HV1i4V5UT", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "58JuWMXg4gQCu5SiMv6f6UvjqueBE4AzfEqyhyZVdtVm", + block_height: 133074700, + block_timestamp: 1732042994973828600, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "H678TmCirpe3TyGnALjTaXDH7fZDYRH5nJNoY8vBZadq", + included_in_block_hash: "DxLBNGodABBKzeei4uriybnFHS12xeDDHbXSiS7N51bx", + block_timestamp: "1732042992756041571", + block: { block_height: 133074698 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.3741532280359997e20 }, + }, + { + id: "10372781526", + receipt_id: "HXuUiQAviTCNeUPVibVMvuQfSv63yKh9Lm9x7LPfzfUa", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "A4JyJ3unfYJ2czWv9LPa5DFEEpTKAoegeY1YFcuewH14", + block_height: 133350887, + block_timestamp: 1732351572012133000, + }, + receipt_outcome: { + gas_burnt: 2239359396995.0, + tokens_burnt: 2.239359396995e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: false, + }, + transaction_hash: "eseGU9orFSN42g7cXxfsGpHiT22cMw9C6KvMneYs3pt", + included_in_block_hash: "HDuDDLFWqHxZprxzxmRry3wz6y4gv31Y2xa3Z4B1NnA", + block_timestamp: "1732351570791569890", + block: { block_height: 133350886 }, + receipt_conversion_tokens_burnt: "31554584325500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.239359396995e20, + args: '{"proposal": {"kind": {"ChangePolicyUpdateParameters": {"parameters": {"proposal_period": "86400000000000"}}}, "description": "Change proposal period"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: false }, + outcomes_agg: { transaction_fee: 2.55490524025e20 }, + }, + { + id: "10399998757", + receipt_id: "BQYJaZobs2QE8jkxhYoDUq2AH6NtMzpaAVmvDa2dqufh", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "J83W1QfbwsjFMhd7FrFfEBUrNR9ezXP1NRgmE3QSxoQ6", + block_height: 133424899, + block_timestamp: 1732435384406369500, + }, + receipt_outcome: { + gas_burnt: 4755068398307.0, + tokens_burnt: 4.755068398307e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "4ucJRwdxL2CsA3akNSvyzT5qhLWgLdAXBtQeyQXSEM2b", + included_in_block_hash: "63DwVDe3ZNTipHeSrDRC5dmm9bBf1KDhTiVakcqH19r7", + block_timestamp: "1732435383163199474", + block: { block_height: 133424898 }, + receipt_conversion_tokens_burnt: "74355486909500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 4.755068398307e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "*:VoteRemove", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near", "frol.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "policy_update_parameters:AddProposal", "policy_add_or_update_role:AddProposal", "add_member_to_role:*", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "megha19.near", "meghagoel.near", "petersalomonsen.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "604800000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Add allowed proposal kinds"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.4986232674020006e20 }, + }, + { + id: "10400070662", + receipt_id: "HcYWx1Kz8MMc8VVf8fgPjmGYRCwJdCw7cTG4MHvzA4AV", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "wa2XvwP4e3hqH1jfLPdvzbJn7Qzs9F5iisR9s8w2cPB", + block_height: 133425047, + block_timestamp: 1732435549067875800, + }, + receipt_outcome: { + gas_burnt: 4893453894805.0, + tokens_burnt: 4.893453894805e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "99eA5kj1RHHSxaNosSqHjAJuFr97CizJjrMXXb7Wp7o7", + included_in_block_hash: "BgA2aEXibLfs1kB1WJ1Gd1AWcwpLVMoHwBPBKykpNv1w", + block_timestamp: "1732435547931228591", + block: { block_height: 133425046 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.893453894805e20, + args: '{"id": 117, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.42684172448e20 }, + }, + { + id: "10400071248", + receipt_id: "8mUN7oRgaDKr71iSpMJ2FvwQm2oHhiuxssNhKqr1WywZ", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2npYEUnRDSQFto9yuuXciVyMFWgSnkecXaC9bsFRrBEX", + block_height: 133425048, + block_timestamp: 1732435550101958000, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "99eA5kj1RHHSxaNosSqHjAJuFr97CizJjrMXXb7Wp7o7", + included_in_block_hash: "BgA2aEXibLfs1kB1WJ1Gd1AWcwpLVMoHwBPBKykpNv1w", + block_timestamp: "1732435547931228591", + block: { block_height: 133425046 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.42684172448e20 }, + }, + { + id: "10400105937", + receipt_id: "67RddmTzTBWPaJiCwvLaxenXAHpEqTKXzYM8oSgifMHE", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8gFsDuT986KCQUEPonfBHGQNtNixtMQnKLa2rrjTFW2P", + block_height: 133425172, + block_timestamp: 1732435688990069500, + }, + receipt_outcome: { + gas_burnt: 2912755722681.0, + tokens_burnt: 2.912755722681e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FW7oKnkqcwKgMUXGWo1Q8fiBVuSehy6HsvD6hticcxZL", + included_in_block_hash: "D5U5cDLqLvtRV3ftKu9RLWSkAgrxpA644cgYMeivGUJL", + block_timestamp: "1732435687733591498", + block: { block_height: 133425171 }, + receipt_conversion_tokens_burnt: "31559352697000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.912755722681e20, + args: '{"proposal": {"kind": {"ChangePolicyUpdateParameters": {"parameters": {"proposal_period": "518400000000000"}}}, "description": "Change proposal period"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.228349249651e20 }, + }, + { + id: "10400110165", + receipt_id: "AMSFtFbfkJJYvuh71HGykhiMrrrsrUHX4dCbyh4yAcaD", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "H6VfySMm3HznCDcxDSwdHT6RuYNkhKv2JAwGLcDcv8tz", + block_height: 133425226, + block_timestamp: 1732435751492974600, + }, + receipt_outcome: { + gas_burnt: 3886634921153.0, + tokens_burnt: 3.886634921153e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "87JjNXxgMmrx44W8QD5U2Xq1LRYk5TmrJsWCY8j1C6oK", + included_in_block_hash: "x8gXvr1YnwTUnk5WqPt636Zhv9JGNiv6ygBx1z1xKxa", + block_timestamp: "1732435750381267779", + block: { block_height: 133425225 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.886634921153e20, + args: '{"id": 118, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.420022750828e20 }, + }, + { + id: "10400110219", + receipt_id: "Hw8GTxDSsNuxnezDm4shF67mDTrdcdGYiXF9uoeoRmbG", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "44zjrHAgjQboh9vwEw7wkfdEARAQqbkKL5TrMnYDk9Wi", + block_height: 133425227, + block_timestamp: 1732435752475275800, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "87JjNXxgMmrx44W8QD5U2Xq1LRYk5TmrJsWCY8j1C6oK", + included_in_block_hash: "x8gXvr1YnwTUnk5WqPt636Zhv9JGNiv6ygBx1z1xKxa", + block_timestamp: "1732435750381267779", + block: { block_height: 133425225 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.420022750828e20 }, + }, + { + id: "10400202465", + receipt_id: "AKZumKZhapwsrTkp49q4yG8QGeU4YNHiMhK5FW4Cv2Yj", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "G7d5eK5sWQbMcRBAgx6wAhR14TiTSbcpQ25iH8TmqK6P", + block_height: 133425466, + block_timestamp: 1732436019310463200, + }, + receipt_outcome: { + gas_burnt: 2871289854903.0, + tokens_burnt: 2.871289854903e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "7Y4aeKzxgoPgUsDKSC89VyVGzzap2vWBthQcZtBz8sgx", + included_in_block_hash: "EJBu1XQKhcZHzkuYVyA8F8sXp4UmXJ95RHbzSY8qUbFB", + block_timestamp: "1732436018195161109", + block: { block_height: 133425465 }, + receipt_conversion_tokens_burnt: "31559352697000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.871289854903e20, + args: '{"proposal": {"kind": {"ChangePolicyUpdateParameters": {"parameters": {"proposal_period": "864000000000000"}}}, "description": "Change proposal period"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.186883381873e20 }, + }, + { + id: "10400226636", + receipt_id: "BthqH69KiBprL6p9rhqFMrTHPrvnFVRzKd45gaeyb1gf", + predecessor_account_id: "petersalomonsen.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "28P9hn5HovWQeeoYHxdBmdXPdzM7pxQ7WpgEDNbxupDZ", + block_height: 133425551, + block_timestamp: 1732436111586207500, + }, + receipt_outcome: { + gas_burnt: 3886634921153.0, + tokens_burnt: 3.886634921153e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "ASk12bypjh8c4cP17DyjoqAy7RLnEJ55XEmLDF91tVAB", + included_in_block_hash: "3DC13HQASejwCLjPgzQ5oRtSu9Rvw72TB2Wfff8ZMJzq", + block_timestamp: "1732436110418787854", + block: { block_height: 133425550 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.886634921153e20, + args: '{"id": 119, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.420022750828e20 }, + }, + { + id: "10400226934", + receipt_id: "2XBgiApgBac5uxRW9MSBdXaBNxXyPUn8EFh4UQGgVW3k", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "petersalomonsen.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "2FmBRr3Hpy69bamEwrFVnk6Gub5neE9Vaj5jAy7foUAW", + block_height: 133425552, + block_timestamp: 1732436112636790300, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "petersalomonsen.near", + status: true, + }, + transaction_hash: "ASk12bypjh8c4cP17DyjoqAy7RLnEJ55XEmLDF91tVAB", + included_in_block_hash: "3DC13HQASejwCLjPgzQ5oRtSu9Rvw72TB2Wfff8ZMJzq", + block_timestamp: "1732436110418787854", + block: { block_height: 133425550 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.420022750828e20 }, + }, + { + id: "10502128620", + receipt_id: "AdxQe2hUW3XnEt7E4HSjrZtNC9DivmJNmTpLjGrYLTCd", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "J2hCaQDnbX8GeFQmttyxvKPpMPnAGg4qQkNRdCi2tz2Q", + block_height: 133691943, + block_timestamp: 1732733071451980500, + }, + receipt_outcome: { + gas_burnt: 2896154997999.0, + tokens_burnt: 2.896154997999e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "GNEUnNkpf9aTE3RRdgoen3zk3R9Hg1TRygR8Fk8XMurY", + included_in_block_hash: "3D1S5qcv4tQfboZGQHagrYKiCeg4sUfddfaSXfbUfgou", + block_timestamp: "1732733070349639574", + block: { block_height: 133691942 }, + receipt_conversion_tokens_burnt: "31559352697000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.896154997999e20, + args: '{"proposal": {"kind": {"ChangePolicyUpdateParameters": {"parameters": {"proposal_period": "950400000000000"}}}, "description": "Change proposal period"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.2117485249689996e20 }, + }, + { + id: "10647922519", + receipt_id: "8sb9ksPmcHSLH1AuV9DyQfanD1sHtYxpMxFvn6RcUaqm", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "5defsqWDGsDnkhuMsr1Ngp6XQTiB5Wc35waJBCHZjKKc", + block_height: 134052682, + block_timestamp: 1733140040444847400, + }, + receipt_outcome: { + gas_burnt: 2935677627509.0, + tokens_burnt: 2.935677627509e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "CHZPAstbJ2yhKeEzTnxwq3KTHkqwbdhpVTkLYVvmdLRE", + included_in_block_hash: "7pb3j2iZ1Z14Br3vyV4e98evdVjwwK5s6RKZxG3CnkDe", + block_timestamp: "1733140038071558701", + block: { block_height: 134052681 }, + receipt_conversion_tokens_burnt: "32083873562000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.935677627509e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "", "deposit": "500000000000000000000000", "method_name": "deposit_and_stake"}], "receiver_id": "bisontrails.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.256516363129e20 }, + }, + { + id: "10647931699", + receipt_id: "4AJWHiKW3xdXmKQ6QrPQngxRASL2MjN5JjKhCGcCVeYJ", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "37fFFLcdwevxmQ66fWjp7qhfT9QUauPYG12VysJ7vSbo", + block_height: 134052703, + block_timestamp: 1733140063423976200, + }, + receipt_outcome: { + gas_burnt: 3864884056881.0, + tokens_burnt: 3.864884056881e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + included_in_block_hash: "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + block_timestamp: "1733140062280899672", + block: { block_height: 134052702 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.864884056881e20, + args: '{"id": 121, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2976023778136e21 }, + }, + { + id: "10647932398", + receipt_id: "F1spBNpqEVJQjwVHoYVcvV5XH9MnKWvsFG2RpCHSLDrX", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "bisontrails.poolv1.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ADskNobd8PfxZfQVSHytXLNcqy5Ge9wBWv2dWiBs7hKh", + block_height: 134052704, + block_timestamp: 1733140064547454200, + }, + receipt_outcome: { + gas_burnt: 3653767743965.0, + tokens_burnt: 3.6537677439650005e20, + executor_account_id: "bisontrails.poolv1.near", + status: true, + }, + transaction_hash: "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + included_in_block_hash: "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + block_timestamp: "1733140062280899672", + block: { block_height: 134052702 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "deposit_and_stake", + deposit: 5e23, + fee: 3.6537677439650005e20, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2976023778136e21 }, + }, + { + id: "10647932407", + receipt_id: "9C1dgZcP8aJS4xq1Et4e4zHxY5N9eEzZaUqCEmj9SXct", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "ADskNobd8PfxZfQVSHytXLNcqy5Ge9wBWv2dWiBs7hKh", + block_height: 134052704, + block_timestamp: 1733140064547454200, + }, + receipt_outcome: { + gas_burnt: 3122365808778.0, + tokens_burnt: 3.122365808778e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + included_in_block_hash: "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + block_timestamp: "1733140062280899672", + block: { block_height: 134052702 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.122365808778e20, + args: '{"proposal_id": 121}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2976023778136e21 }, + }, + { + id: "10647933369", + receipt_id: "ESo2FwdsVTLx7X6eFALMD8B6vQJtvEdkHYiEL7hXScjK", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HatkhgwuQ3d8GJ4EKhTRMEosv6npaLhXy6JBbtJeeCSr", + block_height: 134052706, + block_timestamp: 1733140066661023200, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk", + included_in_block_hash: "CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x", + block_timestamp: "1733140062280899672", + block: { block_height: 134052702 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2976023778136e21 }, + }, + { + id: "10648069284", + receipt_id: "BNXhwN4sa2jvtQfFtSbLN4tQmndeSrMFYR1tQokaPhsi", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "BQn8x3TVirjgrxSaY4gL3CorDK7BjMroD4c6ZiCZEW8S", + block_height: 134053002, + block_timestamp: 1733140406100546800, + }, + receipt_outcome: { + gas_burnt: 2937463757289.0, + tokens_burnt: 2.9374637572889998e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DsK5ZjnGmXQ4qLu9eypZaQGquBRzZLuYRs3j63GmrrUf", + included_in_block_hash: "EnoCmmFgYf6TASXN3fwcKy8Y1FAZbPtWBSnjyPZ1vLby", + block_timestamp: "1733140404966551975", + block: { block_height: 134053001 }, + receipt_conversion_tokens_burnt: "32174472620500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.9374637572889998e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "eyJhbW91bnQiOiIyNTAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==", "deposit": "0", "method_name": "unstake"}], "receiver_id": "bisontrails.poolv1.near"}}, "description": "{\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\":null}"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.259208483494e20 }, + }, + { + id: "10648073416", + receipt_id: "8a4KWaJ9BhCncnxb6Ao7jiQQhbWFr47eofwyqCuk8DCh", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "DA8RYzaANrJnDs1gJiy8KFSJ42Qh4qNqVsn5p2GsERne", + block_height: 134053016, + block_timestamp: 1733140421840036000, + }, + receipt_outcome: { + gas_burnt: 3872545268656.0, + tokens_burnt: 3.872545268656e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + included_in_block_hash: "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + block_timestamp: "1733140420619015943", + block: { block_height: 134053015 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 3.872545268656e20, + args: '{"id": 122, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2361571289765e21 }, + }, + { + id: "10648073795", + receipt_id: "9geJZS8dJJeUipbq74f8UEGCWX3LByG1E6phnSzVscPB", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "bisontrails.poolv1.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4DR41Vw6Y1xhqZbVsgPqT8TwibwydMYHAiFhpaf1hEDH", + block_height: 134053017, + block_timestamp: 1733140422933179600, + }, + receipt_outcome: { + gas_burnt: 3026095435036.0, + tokens_burnt: 3.026095435036e20, + executor_account_id: "bisontrails.poolv1.near", + status: true, + }, + transaction_hash: "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + included_in_block_hash: "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + block_timestamp: "1733140420619015943", + block: { block_height: 134053015 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "unstake", + deposit: 0.0, + fee: 3.026095435036e20, + args: '{"amount": "250000000000000000000000"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2361571289765e21 }, + }, + { + id: "10648073797", + receipt_id: "8NZx7B87hPwNA1LKLjPejXz5fB3k7rDbrhVQdgANcUTz", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4DR41Vw6Y1xhqZbVsgPqT8TwibwydMYHAiFhpaf1hEDH", + block_height: 134053017, + block_timestamp: 1733140422933179600, + }, + receipt_outcome: { + gas_burnt: 3127924417561.0, + tokens_burnt: 3.127924417561e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + included_in_block_hash: "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + block_timestamp: "1733140420619015943", + block: { block_height: 134053015 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "on_proposal_callback", + deposit: 0.0, + fee: 3.127924417561e20, + args: '{"proposal_id": 122}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2361571289765e21 }, + }, + { + id: "10648074527", + receipt_id: "JAw6bLmMdJUgsx1hTWYfJKuHbKpveCRYuhwGww1rR4Wf", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "megha19.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "6mac8ZXePSf29HxWA3jkWV9kqyhwN1wDTRf6z8mG9UJF", + block_height: 134053019, + block_timestamp: 1733140424910559700, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "megha19.near", + status: true, + }, + transaction_hash: "33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X", + included_in_block_hash: "Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n", + block_timestamp: "1733140420619015943", + block: { block_height: 134053015 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 1.2361571289765e21 }, + }, + { + id: "10720513722", + receipt_id: "AuEPYCJYroemnSNvw9wiJtoUteE6jG9MY7V4JCTdjTJb", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "GhemU4nwmykrCyi5ZzRX8rEujETt3CvTR8gN4z5mpDbd", + block_height: 134214092, + block_timestamp: 1733323714238445300, + }, + receipt_outcome: { + gas_burnt: 2868958055157.0, + tokens_burnt: 2.868958055157e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "FRgrLB1X5LXQRQUUbbU7gAeBUZMUzwqpepteXVGVGG1H", + included_in_block_hash: "FTe4cwpXn7V96vPbZ1rYH4AtmEaCQpJgdBC1GvbsVh8L", + block_timestamp: "1733323713336309823", + block: { block_height: 134214091 }, + receipt_conversion_tokens_burnt: "33075694834000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.868958055157e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "1000000000000000000000", "token_id": "", "receiver_id": "megha19.near"}}, "description": "* Title: DevRel & DevHub (01 - 30 November) Contributor Report\\\\\\\\n* Summary: Monthly paid developer relations contributor report. These activities aim to onboard more developers to the ecosystem, and assist existing developers with problems or enrich their experience. Activities for the last month can be seen below.\\\\\\\\n* ProposalId: 267"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.199715003497e20 }, + }, + { + id: "10720529640", + receipt_id: "EikJNrxWrTsFsj46rYVbR75JQEyyNoGV5LrkM5UgjMcM", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "A6YDZ2RttXmUx4enqAFX6jECLRzCUkygdEwRgmTmL8PR", + block_height: 134214132, + block_timestamp: 1733323758364167400, + }, + receipt_outcome: { + gas_burnt: 2862659748957.0, + tokens_burnt: 2.8626597489570002e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "APMLNvBbSKkcdrT2DCB1o4KKBZySrRe4K9z5DvwYG5Sn", + included_in_block_hash: "D7t1wpJftHPvtVfc4R3SnUXK8N7atp19mtWSMw3sYcfs", + block_timestamp: "1733323757308472623", + block: { block_height: 134214131 }, + receipt_conversion_tokens_burnt: "32889728345500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8626597489570002e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000000000000000000000", "token_id": "", "receiver_id": "megha19.near"}}, "description": "* Title: DevHub Developer Contributor report by Megha for 11/04/2024 - 12/01/2024\\\\\\\\n* Summary: Worked on treasury dashboard, added support for lockup contract, added staking and unstaking, updated dashboard, infinex, helped Thomas with indexer testing.\\\\\\\\n* Notes: testing notes\\\\\\\\n* ProposalId: 266"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.1915570324120004e20 }, + }, + { + id: "10720604169", + receipt_id: "JDXLxzphA1eaZURQho6dhcHQ1DA6e4f2hUVjrN7XJPWK", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "EE2WTftHiqFS93B5RscG2Qeoo15uqAeUXMDLBsws6Uhs", + block_height: 134214314, + block_timestamp: 1733323961563307800, + }, + receipt_outcome: { + gas_burnt: 2878391097269.0, + tokens_burnt: 2.8783910972690003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "DEgKuPgFcaWNYCt8LKMfnCTea4FAtj8AcPxALKSRgEED", + included_in_block_hash: "PGB3uBdPbR1SQRfaT9WZRDDuxLaMQuKnd1kmanTKJxh", + block_timestamp: "1733323960346437884", + block: { block_height: 134214313 }, + receipt_conversion_tokens_burnt: "33557300355500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8783910972690003e20, + args: '{"proposal": {"kind": {"Transfer": {"amount": "10000", "token_id": "usdt.tether-token.near", "receiver_id": "thomasguntenaar.near"}}, "description": "* Title: DevHub Developer Contributor report by THOMAS for 11/11/2024 \\\\\\\\u{2013}\\\\\\\\u{a0}11/22/2024\\\\\\\\n* Summary: Replacing the indexer infrastructure which we use at devhub to efficiently query data about proposals and rfp\\\\\\\\\\\\\'s so we can filter order search in the main dashboards of the events- & infrastructure-committee, the templar instance & devhub itself. Also supporting the treasury dashboards.\\\\\\\\n* Notes: testing\\\\\\\\n* Proposal Id: 260"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.213964100824e20 }, + }, + { + id: "10720800369", + receipt_id: "FTyYZVFAav1UEi9VbosYavpoYepyxCgDWp6M6D9Aw939", + predecessor_account_id: "megha19.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "3Q6Jzu1GYYaX3BuKAkDw7jzCCuUN8fz4rCxcC7d9YAeM", + block_height: 134214828, + block_timestamp: 1733324542867720200, + }, + receipt_outcome: { + gas_burnt: 2850625428917.0, + tokens_burnt: 2.8506254289170003e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "HpbwTiTLtr9UgTEMxUFFZPKeL8P26fWEMSAk3nRhK45b", + included_in_block_hash: "DP79S6V1pNAwoCCPNZzi4EbU9k4DRVkVxR1wr4FySef8", + block_timestamp: "1733324541689127587", + block: { block_height: 134214827 }, + receipt_conversion_tokens_burnt: "32126788905500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 2.8506254289170003e20, + args: '{"proposal": {"kind": {"FunctionCall": {"actions": [{"gas": "200000000000000", "args": "", "deposit": "10000000000000000000000", "method_name": "deposit_and_stake"}], "receiver_id": "astro-stakers.poolv1.near"}}, "description": "* Proposal Action: stake\\\\\\\\n* Notes: Testing notes"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 3.1718933179719995e20 }, + }, + { + id: "11150200034", + receipt_id: "8nNvDrhpPeEnpYJEqKs9SwwVFa4CnANn8JXXBoMEvFHA", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "8SDxQdgPy4BBMg3yidLJFyozBQG7jTEZTRnEMMFEhta8", + block_height: 134701557, + block_timestamp: 1733879905560422700, + }, + receipt_outcome: { + gas_burnt: 4297511363923.0, + tokens_burnt: 4.297511363923e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "9RdLF5mPt5gJKGUqJApa2n3pWy6VsFg44k4U91fqffTD", + included_in_block_hash: "8wZhPtUE9YEbK21xZHJ1T6dQJcBnyEYRUvJgiVPmoePo", + block_timestamp: "1733879904272674011", + block: { block_height: 134701556 }, + receipt_conversion_tokens_burnt: "48630122667000000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "add_proposal", + deposit: 0.0, + fee: 4.297511363923e20, + args: '{"proposal": {"kind": {"ChangePolicy": {"policy": {"roles": [{"kind": {"Group": ["theori.near", "freski.near", "megha19.near", "frol.near", "thomasguntenaar.near", "petersalomonsen.near"]}, "name": "Create Requests", "permissions": ["call:AddProposal", "*:VoteRemove", "transfer:AddProposal", "config:Finalize"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "petersalomonsen.near", "thomasguntenaar.near", "theori.near", "megha19.near"]}, "name": "Manage Members", "permissions": ["config:*", "policy:*", "add_member_to_role:*", "policy_update_parameters:AddProposal", "policy_add_or_update_role:AddProposal", "remove_member_from_role:*"], "vote_policy": {"call": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": "1", "weight_kind": "RoleWeight"}}}, {"kind": {"Group": ["freski.near", "megha19.near", "meghagoel.near", "petersalomonsen.near", "frol.near"]}, "name": "Vote", "permissions": ["*:VoteReject", "*:VoteApprove", "*:VoteRemove"], "vote_policy": {"call": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "vote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "config": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "policy": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "transfer": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_bounty": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "bounty_done": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_self": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "set_vote_token": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "upgrade_remote": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "add_member_to_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}, "remove_member_from_role": {"quorum": "0", "threshold": [10, 100], "weight_kind": "RoleWeight"}}}], "bounty_bond": "100000000000000000000000", "proposal_bond": "0", "proposal_period": "864000000000000", "default_vote_policy": {"quorum": "1", "threshold": "1", "weight_kind": "RoleWeight"}, "bounty_forgiveness_period": "604800000000000"}}}, "description": "Change policy"}}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 4.783812590593001e20 }, + }, + { + id: "11150201675", + receipt_id: "vdjFgzgBuTBVPRSq5KFgnnwd1iTQAEbFzybABnQnhbK", + predecessor_account_id: "theori.near", + receiver_account_id: "testing-astradao.sputnik-dao.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "HRYTMdkskTdn2wpaueUj3kJ3C3HnpDnpv4qLucebTvSo", + block_height: 134701562, + block_timestamp: 1733879911228003600, + }, + receipt_outcome: { + gas_burnt: 4830985810346.0, + tokens_burnt: 4.8309858103460004e20, + executor_account_id: "testing-astradao.sputnik-dao.near", + status: true, + }, + transaction_hash: "Ex6tKYc35k22oRXDG5yvPFvRXRd6dDj82oMhCU9UtTqR", + included_in_block_hash: "FpkLSxP8BCBeHNRmhbZce8fzpP4GukMPxsVr925gRC5h", + block_timestamp: "1733879910006974460", + block: { block_height: 134701561 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "FUNCTION_CALL", + method: "act_proposal", + deposit: 0.0, + fee: 4.8309858103460004e20, + args: '{"id": 127, "action": "VoteApprove"}', + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.364373640021e20 }, + }, + { + id: "11150202109", + receipt_id: "58h5eQ8d1yJhnx3iqFbbh88Db9GRFpGXkeBMAg8aSnxK", + predecessor_account_id: "testing-astradao.sputnik-dao.near", + receiver_account_id: "theori.near", + receipt_kind: "ACTION", + receipt_block: { + block_hash: "4mkHyvFM7FHNhnsPS3oMF2RDFNFDnHnMgYKPTCU31psk", + block_height: 134701563, + block_timestamp: 1733879912444341500, + }, + receipt_outcome: { + gas_burnt: 223182562500.0, + tokens_burnt: 2.231825625e19, + executor_account_id: "theori.near", + status: true, + }, + transaction_hash: "Ex6tKYc35k22oRXDG5yvPFvRXRd6dDj82oMhCU9UtTqR", + included_in_block_hash: "FpkLSxP8BCBeHNRmhbZce8fzpP4GukMPxsVr925gRC5h", + block_timestamp: "1733879910006974460", + block: { block_height: 134701561 }, + receipt_conversion_tokens_burnt: "31020526717500000000", + actions: [ + { + action: "TRANSFER", + method: null, + deposit: 0.0, + fee: 2.231825625e19, + args: null, + }, + ], + actions_agg: { deposit: 0.0 }, + outcomes: { status: true }, + outcomes_agg: { transaction_fee: 5.364373640021e20 }, + }, +]; + +// loop through txns and count all txns.actions > 1 +// +let count = 0; +txns.forEach((txn) => { + if (txn.actions[0].method == "act_proposal") { + count++; + } +}); +console.log(count); +console.log(txns.length); diff --git a/src/nearblocks_client/transactions.rs b/src/nearblocks_client/transactions.rs index 8e621a6..3240613 100644 --- a/src/nearblocks_client/transactions.rs +++ b/src/nearblocks_client/transactions.rs @@ -2,6 +2,7 @@ use crate::db::DB; use crate::nearblocks_client; use crate::nearblocks_client::proposal::{handle_edit_proposal, handle_set_block_height_callback}; use crate::nearblocks_client::rfp::{handle_edit_rfp, handle_set_rfp_block_height_callback}; +use crate::nearblocks_client::sputnik::{handle_act_proposal, handle_add_proposal}; use crate::nearblocks_client::types::Transaction; use near_account_id::AccountId; use rocket::{http::Status, State}; @@ -14,6 +15,15 @@ async fn fetch_all_new_transactions( let mut all_transactions = Vec::new(); let mut current_cursor = "".to_string(); + // TODO remove + // if contract == "testing-astradao.sputnik-dao.near" { + // // Read from file + // let file_path = format!("transactions_{}.json", contract.to_string()); + // let json_data = std::fs::read_to_string(file_path).unwrap(); + // let transactions: Vec = serde_json::from_str(&json_data).unwrap(); + // return (transactions.into_iter().rev().collect(), "None".to_string()); + // } + loop { let response = match nearblocks_client .get_account_txns_by_pagination( @@ -39,7 +49,7 @@ async fn fetch_all_new_transactions( ); // Check if we've wrapped around or reached the end - if response.cursor.is_none() { + if response.cursor.is_none() || contract == "testing-astradao.sputnik-dao.near" { println!("Cursor has wrapped around, finished fetching transactions"); all_transactions.extend(response.txns); current_cursor = "None".to_string(); @@ -49,6 +59,11 @@ async fn fetch_all_new_transactions( // Add transactions to our collection all_transactions.extend(response.txns); + // For testing purposes write to a json file + // let file_path = format!("transactions_{}.json", contract.to_string()); + // let json_data = serde_json::to_string(&all_transactions).unwrap(); + // std::fs::write(file_path, json_data).unwrap(); + // Update cursor for next iteration current_cursor = response.cursor.unwrap(); } @@ -139,6 +154,14 @@ pub async fn process( println!("set_rfp_block_height_callback"); handle_set_rfp_block_height_callback(transaction.to_owned(), db, contract).await } + "add_proposal" => { + println!("add_proposal"); + handle_add_proposal(transaction.to_owned(), db, contract).await + } + // "act_proposal" => { + // println!("act_proposal"); + // handle_act_proposal(transaction.to_owned(), db, contract).await + // } _ => { if action.action == "FUNCTION_CALL" { // println!("Unhandled method: {:?}", action.method.as_ref().unwrap()); diff --git a/src/rpc_service.rs b/src/rpc_service.rs index 3b14738..5691409 100644 --- a/src/rpc_service.rs +++ b/src/rpc_service.rs @@ -1,12 +1,19 @@ +use std::{collections::HashMap, str::FromStr}; + use devhub_shared::proposal::VersionedProposal; use devhub_shared::rfp::VersionedRFP; use near_account_id::AccountId; use near_api::{prelude::*, types::reference::Reference, types::Data}; use near_jsonrpc_client::methods::query::RpcQueryRequest; +use near_sdk::json_types::U64; use rocket::http::Status; use rocket::serde::json::json; use serde::Deserialize; +use crate::entrypoints::sputnik::sputnik_types::{ + Proposal, ProposalKind, ProposalOutput, ProposalStatus, +}; + #[derive(Deserialize)] pub struct RpcResponse { pub data: String, @@ -18,19 +25,6 @@ pub struct RpcService { contract: Contract, } -#[derive(Deserialize)] -struct QueryResponse { - // jsonrpc: String, - result: QueryResponseResult, - // id: String, -} - -#[derive(Deserialize)] -struct QueryResponseResult { - // result is an array of bytes, to be specific it is an ASCII code of the string - result: Vec, -} - impl Default for RpcService { fn default() -> Self { Self { @@ -78,6 +72,55 @@ impl RpcService { result } + pub async fn get_dao_proposal( + &self, + proposal_id: i64, + ) -> Result, near_api::errors::QueryError> { + println!("get_dao_proposal: {:?}", proposal_id); + let result: Result, _> = self + .contract + .call_function("get_proposal", json!({ "id": proposal_id })) + .unwrap() + .read_only() + .fetch_from(&self.network) + .await; + + result + } + + pub async fn get_last_dao_proposal_id( + &self, + ) -> Result, near_api::errors::QueryError> { + let result: Result, _> = self + .contract + .call_function("get_last_proposal_id", json!({})) + .unwrap() + .read_only() + .fetch_from(&self.network) + .await; + + result + } + + pub async fn get_dao_proposals( + &self, + from_index: i32, + limit: i32, + ) -> Result>, near_api::errors::QueryError> { + let result: Result>, _> = self + .contract + .call_function( + "get_proposals", + json!({ "from_index": from_index, "limit": limit }), + ) + .unwrap() + .read_only() + .fetch_from(&self.network) + .await; + + result + } + pub async fn get_all_proposal_ids(&self) -> Result, Status> { let result: Result>, _> = self .contract @@ -149,4 +192,102 @@ impl RpcService { } } } + + pub async fn get_dao_proposal_on_block( + &self, + proposal_id: i64, + block_id: i64, + ) -> Result { + let result: Result, near_api::errors::QueryError> = + self.contract + .call_function("get_proposal", json!({ "id": proposal_id })) + .unwrap() + .read_only() + .at(Reference::AtBlock(block_id as u64)) + .fetch_from(&self.network) + .await; + + match result { + Ok(res) => Ok(res.data), + Err(on_block_error) => match self.get_dao_proposal(proposal_id).await { + Ok(proposal) => Ok(proposal.data), + Err(rpc_error) => { + eprintln!( + "Failed get_dao_proposal_on_block from RPC on block height {} and id {}", + block_id, proposal_id, + ); + eprintln!("{:?}", on_block_error); + eprintln!("{:?}", rpc_error); + // Err(Status::InternalServerError) + // TODO issue 1018 + Ok(ProposalOutput { + id: proposal_id.try_into().unwrap(), + proposal: Proposal { + proposer: AccountId::from_str("deleted.near").unwrap(), + description: "".to_string(), + kind: ProposalKind::FunctionCall { + receiver_id: AccountId::from_str("deleted.near").unwrap(), + actions: vec![], + }, + status: ProposalStatus::Removed, + vote_counts: HashMap::new(), + votes: HashMap::new(), + submission_time: U64::from(0), + }, + }) + } + }, + } + } + + pub async fn get_dao_proposals_on_block( + &self, + from_index: i32, + limit: i32, + block_id: i64, + ) -> Result, Status> { + let result: Result< + Data>, + near_api::errors::QueryError, + > = self + .contract + .call_function( + "get_proposals", + json!({ "from_index": from_index, "limit": limit }), + ) + .unwrap() + .read_only() + .at(Reference::AtBlock(block_id as u64)) + .fetch_from(&self.network) + .await; + + match result { + Ok(res) => Ok(res.data), + Err(on_block_error) => match self.get_dao_proposals(from_index, limit).await { + Ok(proposals) => Ok(proposals.data), + Err(rpc_error) => { + eprintln!("Failed to get dao proposals from RPC on block height {} from_index {} limit {}", block_id, from_index, limit); + eprintln!("{:?}", on_block_error); + eprintln!("{:?}", rpc_error); + Err(Status::InternalServerError) + } + }, + } + } + + pub async fn get_last_dao_proposal_id_on_block( + &self, + block_id: i64, + ) -> Result, near_api::errors::QueryError> { + let result: Result, _> = self + .contract + .call_function("get_last_proposal_id", json!({})) + .unwrap() + .read_only() + .at(Reference::AtBlock(block_id as u64)) + .fetch_from(&self.network) + .await; + + result + } } diff --git a/transactions_testing-astradao.sputnik-dao.near.json b/transactions_testing-astradao.sputnik-dao.near.json new file mode 100644 index 0000000..3addb1f --- /dev/null +++ b/transactions_testing-astradao.sputnik-dao.near.json @@ -0,0 +1 @@ +[{"id":"3014732217","receipt_id":"HyxfzQjo27pMzkHRPpAFU74RsZ9WnW6nJwWeYmvFUmr6","predecessor_account_id":"sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8CSwV93KdEXGckzkF89as5qwttXxJtRTP6Cf8F67Y7Wk","block_height":114444537,"block_timestamp":1710057937278001200},"receipt_outcome":{"gas_burnt":42919049933669.0,"tokens_burnt":4.2919049933669e21,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HVuWjFHUEigwUrTJhrKv7qCBWbtGvU2frjbW5R1jTRpw","included_in_block_hash":"DF6stLuhM7XHgWrXbx6wFHbC1313p3TL63VjoTPyvY3c","block_timestamp":"1710057934643716218","block":{"block_height":114444535},"receipt_conversion_tokens_burnt":"243401839201800000000","actions":[{"action":"CREATE_ACCOUNT","method":null,"deposit":0.0,"fee":4.2919049933669e21,"args":null},{"action":"TRANSFER","method":null,"deposit":6e24,"fee":4.2919049933669e21,"args":null},{"action":"DEPLOY_CONTRACT","method":null,"deposit":0.0,"fee":4.2919049933669e21,"args":null},{"action":"FUNCTION_CALL","method":"new","deposit":0.0,"fee":4.2919049933669e21,"args":"{\"bond\": \"100000000000000000000000\", \"config\": {\"name\": \"testing-astradao\", \"purpose\": \"\", \"metadata\": \"eyJsaW5rcyI6W10sImZsYWdDb3ZlciI6IiIsImZsYWdMb2dvIjoiIiwiZGlzcGxheU5hbWUiOiJ0ZXN0aW5nLWFzdHJhZGFvIiwibGVnYWwiOnsibGVnYWxTdGF0dXMiOiIiLCJsZWdhbExpbmsiOiIifX0=\"}, \"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"council\", \"slug\": \"council\", \"permissions\": [\"*:Finalize\", \"policy:AddProposal\", \"add_bounty:AddProposal\", \"bounty_done:AddProposal\", \"transfer:AddProposal\", \"vote:AddProposal\", \"remove_member_from_role:AddProposal\", \"add_member_to_role:AddProposal\", \"config:AddProposal\", \"call:AddProposal\", \"upgrade_remote:AddProposal\", \"upgrade_self:AddProposal\", \"set_vote_token:AddProposal\", \"policy:VoteApprove\", \"policy:VoteReject\", \"policy:VoteRemove\", \"add_bounty:VoteApprove\", \"add_bounty:VoteReject\", \"add_bounty:VoteRemove\", \"bounty_done:VoteApprove\", \"bounty_done:VoteReject\", \"bounty_done:VoteRemove\", \"transfer:VoteApprove\", \"transfer:VoteReject\", \"transfer:VoteRemove\", \"vote:VoteApprove\", \"vote:VoteReject\", \"vote:VoteRemove\", \"remove_member_from_role:VoteApprove\", \"remove_member_from_role:VoteReject\", \"remove_member_from_role:VoteRemove\", \"add_member_to_role:VoteApprove\", \"add_member_to_role:VoteReject\", \"add_member_to_role:VoteRemove\", \"call:VoteApprove\", \"call:VoteReject\", \"call:VoteRemove\", \"config:VoteApprove\", \"config:VoteReject\", \"config:VoteRemove\", \"set_vote_token:VoteApprove\", \"set_vote_token:VoteReject\", \"set_vote_token:VoteRemove\", \"upgrade_self:VoteApprove\", \"upgrade_self:VoteReject\", \"upgrade_self:VoteRemove\", \"upgrade_remote:VoteApprove\", \"upgrade_remote:VoteReject\", \"upgrade_remote:VoteRemove\"], \"vote_policy\": {}}, {\"kind\": \"Everyone\", \"name\": \"all\", \"slug\": \"all\", \"permissions\": [], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}, \"purpose\": \"\", \"vote_period\": \"604800000000000\", \"grace_period\": \"86400000000000\"}"}],"actions_agg":{"deposit":6e24},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.653457230164e21}},{"id":"3052290046","receipt_id":"27bDmugezLM4ix6k3844t3nmnBPRSC4AnvZi8EZwPQUS","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7LGSEhHCsegjt6Z5TD4bnKnF7fT3dYhrHwwLhHe7mfAW","block_height":114574671,"block_timestamp":1710256458583110400},"receipt_outcome":{"gas_burnt":4592548607174.0,"tokens_burnt":4.592548607174e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5njATosfPzwRyCPEKrM69xzhEwT5wQkMKsSgn7NaemLe","included_in_block_hash":"AYhuUCKU6GP2NMoCWk5jRMcG8qSBQL6gAzrLWR5hEqax","block_timestamp":"1710256456184779894","block":{"block_height":114574670},"receipt_conversion_tokens_burnt":"243385516883600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.592548607174e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"council\", \"permissions\": [\"add_member_to_role:AddProposal\", \"bounty_done:VoteApprove\", \"add_bounty:VoteReject\", \"add_bounty:AddProposal\", \"config:VoteReject\", \"add_bounty:VoteApprove\", \"remove_member_from_role:VoteReject\", \"policy:VoteRemove\", \"transfer:VoteRemove\", \"vote:VoteApprove\", \"upgrade_self:VoteApprove\", \"call:VoteRemove\", \"upgrade_self:AddProposal\", \"upgrade_remote:AddProposal\", \"upgrade_remote:VoteReject\", \"upgrade_remote:VoteApprove\", \"vote:AddProposal\", \"add_member_to_role:VoteReject\", \"bounty_done:VoteReject\", \"call:AddProposal\", \"upgrade_self:VoteRemove\", \"add_bounty:VoteRemove\", \"remove_member_from_role:VoteRemove\", \"config:VoteRemove\", \"call:VoteApprove\", \"add_member_to_role:VoteRemove\", \"policy:AddProposal\", \"add_member_to_role:VoteApprove\", \"policy:VoteApprove\", \"transfer:VoteApprove\", \"config:AddProposal\", \"*:Finalize\", \"remove_member_from_role:VoteApprove\", \"set_vote_token:VoteReject\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"policy:VoteReject\", \"set_vote_token:VoteRemove\", \"remove_member_from_role:AddProposal\", \"transfer:VoteReject\", \"transfer:AddProposal\", \"call:VoteReject\", \"upgrade_remote:VoteRemove\", \"upgrade_self:VoteReject\", \"vote:VoteReject\", \"bounty_done:VoteRemove\", \"vote:VoteRemove\", \"set_vote_token:VoteApprove\", \"config:VoteApprove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": \"Everyone\", \"name\": \"all\", \"permissions\": [], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.026403776010001e20}},{"id":"3052302651","receipt_id":"99A6c8JsK7MQa4k4FsubEECn2kyG5tukzCSSzZ1uGqUQ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3s8aSMWqWCdxEhHoNeiPeM3mUymu6BGodoSoUq5oB8JA","block_height":114574719,"block_timestamp":1710256557466913000},"receipt_outcome":{"gas_burnt":5352795418999.0,"tokens_burnt":5.352795418999e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"6AKb3CrieYZ7UCQDYfREdBAs1EXv4xHP4M15VhxofCiz","included_in_block_hash":"GsUSV6vSuxTP56QmWcJL6S3Kp8Uu9G1MUA2HjkFNrtKT","block_timestamp":"1710256555456231796","block":{"block_height":114574718},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":5.352795418999e20,"args":"{\"id\": 0, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.003995126661001e20}},{"id":"3052302959","receipt_id":"CmFtgg7WF2TTE99PP1oe1svf3JqaNVj7xjCeeStG5u5o","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"G6PDV3iNAjGf5Z57uU6SCBTWGS5StN79RTQ5TCj81okR","block_height":114574720,"block_timestamp":1710256559589314800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"6AKb3CrieYZ7UCQDYfREdBAs1EXv4xHP4M15VhxofCiz","included_in_block_hash":"GsUSV6vSuxTP56QmWcJL6S3Kp8Uu9G1MUA2HjkFNrtKT","block_timestamp":"1710256555456231796","block":{"block_height":114574718},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.003995126661001e20}},{"id":"3066618980","receipt_id":"9VH8tNay3Sg3vN9QUn375FNREfYMdFLmDAJAuU7Qenjv","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5C1DkG6sbXq4a92xiyhFBuhJLmzqGPZdeZ92xEgPT3Gh","block_height":114643599,"block_timestamp":1710353783217085700},"receipt_outcome":{"gas_burnt":4737302537718.0,"tokens_burnt":4.737302537718e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CisBWQFbpCNhu91ss5FExT1gMDT6g8hfKmuGwB1VFnFu","included_in_block_hash":"sqhgTrDicSQLuvtxs6dhvZcieVn2ku6z9qeKidfaaMk","block_timestamp":"1710353781842603145","block":{"block_height":114643598},"receipt_conversion_tokens_burnt":"243389094378000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.737302537718e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"megha19.near\", \"saswat_m.near\"]}, \"name\": \"council\", \"permissions\": [\"add_member_to_role:AddProposal\", \"bounty_done:VoteApprove\", \"add_bounty:VoteReject\", \"add_bounty:AddProposal\", \"config:VoteReject\", \"add_bounty:VoteApprove\", \"remove_member_from_role:VoteReject\", \"policy:VoteRemove\", \"transfer:VoteRemove\", \"vote:VoteApprove\", \"upgrade_self:VoteApprove\", \"call:VoteRemove\", \"upgrade_self:AddProposal\", \"upgrade_remote:AddProposal\", \"upgrade_remote:VoteReject\", \"upgrade_remote:VoteApprove\", \"vote:AddProposal\", \"add_member_to_role:VoteReject\", \"bounty_done:VoteReject\", \"call:AddProposal\", \"upgrade_self:VoteRemove\", \"add_bounty:VoteRemove\", \"remove_member_from_role:VoteRemove\", \"config:VoteRemove\", \"call:VoteApprove\", \"add_member_to_role:VoteRemove\", \"policy:AddProposal\", \"add_member_to_role:VoteApprove\", \"policy:VoteApprove\", \"transfer:VoteApprove\", \"config:AddProposal\", \"*:Finalize\", \"remove_member_from_role:VoteApprove\", \"set_vote_token:VoteReject\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"policy:VoteReject\", \"set_vote_token:VoteRemove\", \"remove_member_from_role:AddProposal\", \"transfer:VoteReject\", \"transfer:AddProposal\", \"call:VoteReject\", \"upgrade_remote:VoteRemove\", \"upgrade_self:VoteReject\", \"vote:VoteReject\", \"bounty_done:VoteRemove\", \"vote:VoteRemove\", \"set_vote_token:VoteApprove\", \"config:VoteApprove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": \"Everyone\", \"name\": \"all\", \"permissions\": [], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.171193481498e20}},{"id":"3066624621","receipt_id":"45E5BYvhFsZEgMxSdnF3PAUaiCxDDruegyLR1fq27czJ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DizQcaW4Qtsd6kab8fdk3refoDVwY5rc8CvfXg4rSDwr","block_height":114643623,"block_timestamp":1710353815704097000},"receipt_outcome":{"gas_burnt":5555215204609.0,"tokens_burnt":5.555215204609001e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"4jLJHNpMmwYqX3gcmV8juJuEHn1TrYb13cKnjw3nXAYd","included_in_block_hash":"4mw3Sm769gebh4rPoY3QcQwPkcnFZBgF4B2C6J9TdgHk","block_timestamp":"1710353814431657214","block":{"block_height":114643622},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":5.555215204609001e20,"args":"{\"id\": 1, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.206414912270999e20}},{"id":"3066624810","receipt_id":"AdgTxkLQjrMVHgwye1kb5BDcMzoZY1Xys7NwQH6QMT2J","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3ieHwevvc1rh7ypXEG4oErDHrU8qDuBG3HPoxfXMB6P9","block_height":114643624,"block_timestamp":1710353817100145200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"4jLJHNpMmwYqX3gcmV8juJuEHn1TrYb13cKnjw3nXAYd","included_in_block_hash":"4mw3Sm769gebh4rPoY3QcQwPkcnFZBgF4B2C6J9TdgHk","block_timestamp":"1710353814431657214","block":{"block_height":114643622},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.206414912270999e20}},{"id":"3095358578","receipt_id":"HNszYA4Drx73HoSDjG6SamvEo4agyorUBAYGHjbn3mu4","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3HKxr6NYCLQ93iNqUapF4sv4PVtZYJSc2fqk4PaHGYaV","block_height":114749184,"block_timestamp":1710496826996008700},"receipt_outcome":{"gas_burnt":4735953577373.0,"tokens_burnt":4.735953577373e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EzsZq6y84FvaxrbxZxxFDkB7PndHhDde11XkxzMkakvN","included_in_block_hash":"5VitXhx8YjifkPVwxfZg83BgNYEFcsczikK2Zk47onRo","block_timestamp":"1710496825578067534","block":{"block_height":114749183},"receipt_conversion_tokens_burnt":"243394237026200000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.735953577373e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"saswat_m.near\", \"megha19.near\", \"sdfhbsadhbvhfgb.near\"]}, \"name\": \"council\", \"permissions\": [\"add_member_to_role:AddProposal\", \"bounty_done:VoteApprove\", \"add_bounty:VoteReject\", \"add_bounty:AddProposal\", \"config:VoteReject\", \"add_bounty:VoteApprove\", \"remove_member_from_role:VoteReject\", \"policy:VoteRemove\", \"transfer:VoteRemove\", \"vote:VoteApprove\", \"upgrade_self:VoteApprove\", \"call:VoteRemove\", \"upgrade_self:AddProposal\", \"upgrade_remote:AddProposal\", \"upgrade_remote:VoteReject\", \"upgrade_remote:VoteApprove\", \"vote:AddProposal\", \"add_member_to_role:VoteReject\", \"bounty_done:VoteReject\", \"call:AddProposal\", \"upgrade_self:VoteRemove\", \"add_bounty:VoteRemove\", \"remove_member_from_role:VoteRemove\", \"config:VoteRemove\", \"call:VoteApprove\", \"add_member_to_role:VoteRemove\", \"policy:AddProposal\", \"add_member_to_role:VoteApprove\", \"policy:VoteApprove\", \"transfer:VoteApprove\", \"config:AddProposal\", \"*:Finalize\", \"remove_member_from_role:VoteApprove\", \"set_vote_token:VoteReject\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"policy:VoteReject\", \"set_vote_token:VoteRemove\", \"remove_member_from_role:AddProposal\", \"transfer:VoteReject\", \"transfer:AddProposal\", \"call:VoteReject\", \"upgrade_remote:VoteRemove\", \"upgrade_self:VoteReject\", \"vote:VoteReject\", \"bounty_done:VoteRemove\", \"vote:VoteRemove\", \"set_vote_token:VoteApprove\", \"config:VoteApprove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": \"Everyone\", \"name\": \"all\", \"permissions\": [], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.169895947635e20}},{"id":"3468708387","receipt_id":"C82T9N6dkHT6AZFPn88oak88wycW13cuczSwaEeUe8YN","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6r4PDemB19q7D1ccdsfoDnXnAXEJUSFdYRPoym9LvZFJ","block_height":115908380,"block_timestamp":1711962411512679200},"receipt_outcome":{"gas_burnt":3876890660255.0,"tokens_burnt":3.876890660255e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BWtnjbnLyAnLh3yN9GcY1LQ5uPU1NwV2qFEnmZVABNhx","included_in_block_hash":"6cB9u1paadaNCGrfdLJunAH6jPp7z3M9vEmB7ogvhXjT","block_timestamp":"1711962410112016482","block":{"block_height":115908379},"receipt_conversion_tokens_burnt":"242974999401200000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":3.876890660255e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJkYXRhIjp7InRlc3RpbmctYXN0cmFkYW8uc3B1dG5pay1kYW8ubmVhciI6eyJwb3N0Ijp7Im1haW4iOiJ7XCJ0eXBlXCI6XCJtZFwiLFwidGV4dFwiOlwiSGkgTkVBUiwgdGhpcyBpcyBteSBmaXJzdCBjb21tZW50IHVzaW5nIEFzdHJhKysgZmVlZCdzIGNvbXBvc2UuXFxuY2M6IEBzYXN3YXRfbS5uZWFyXCJ9In0sImluZGV4Ijp7InBvc3QiOiJ7XCJrZXlcIjpcIm1haW5cIixcInZhbHVlXCI6e1widHlwZVwiOlwibWRcIn19Iiwibm90aWZ5Ijoie1wia2V5XCI6XCJzYXN3YXRfbS5uZWFyXCIsXCJ2YWx1ZVwiOntcInR5cGVcIjpcIm1lbnRpb25cIixcIml0ZW1cIjp7XCJ0eXBlXCI6XCJzb2NpYWxcIixcInBhdGhcIjpcInRlc3RpbmctYXN0cmFkYW8uc3B1dG5pay1kYW8ubmVhci9wb3N0L21haW5cIn19fSJ9fX0sIm9wdGlvbnMiOnsicmVmdW5kX3VudXNlZF9kZXBvc2l0Ijp0cnVlfX0=\", \"deposit\": \"100000000000000000000000\", \"method_name\": \"set\"}], \"receiver_id\": \"social.near\"}}, \"description\": \"Social Feed post\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":6.306640654267e20}},{"id":"3468722137","receipt_id":"8VzPQ4hcVNaPb5cEV2zVTvLCne51xwaK3DEmVwqbaTvm","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"B3fS9vdUMH7keXVvA1QTZnMKRA4GMPctTFZTFf2QeyBM","block_height":115908412,"block_timestamp":1711962454341464000},"receipt_outcome":{"gas_burnt":4018206238513.0,"tokens_burnt":4.018206238513e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"48ojJ7aRdsuvsuyizqJyYBa3Phh2ijA5WAMjrG35v6zj","included_in_block_hash":"9ZdSR3uA5j8k6tDXyCq4Qzs8M8urAFSEzzFVovq8zbad","block_timestamp":"1711962452969838554","block":{"block_height":115908411},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.018206238513e20,"args":"{\"id\": 3, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":6.446223383674999e20}},{"id":"3470350689","receipt_id":"9WmuZsM3ckP41Ka9MiSoRn3EzEhovYwxMURCsoawEjxL","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"CMQEcxRnVWsqZ4mPxVGTbXcVeY8TinwiM4MhKm2REBdt","block_height":115912014,"block_timestamp":1711967201519570000},"receipt_outcome":{"gas_burnt":9044875646458.0,"tokens_burnt":9.044875646458001e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2zo4pXQUEzt2y8cpCAEhjuV1Nz4EQxSzhkH9QirTd53d","included_in_block_hash":"6SAJ1eNGmxEgc5VCDVSpxAZnchiPnyTnjpXCJqMaS7Ks","block_timestamp":"1711967200319522261","block":{"block_height":115912013},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":9.044875646458001e20,"args":"{\"id\": 3, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.5451735968103e21}},{"id":"3470351386","receipt_id":"361azTa37xUn93Cau5vvb67PVCF2KAH9D2hvHh7JDs3R","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"social.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HuqGExvcgFUgcX8vtf3ym5NHQ8DTrkwqEpqJ6d2foox6","block_height":115912015,"block_timestamp":1711967202824539400},"receipt_outcome":{"gas_burnt":9413957597627.0,"tokens_burnt":9.413957597627001e20,"executor_account_id":"social.near","status":true},"transaction_hash":"2zo4pXQUEzt2y8cpCAEhjuV1Nz4EQxSzhkH9QirTd53d","included_in_block_hash":"6SAJ1eNGmxEgc5VCDVSpxAZnchiPnyTnjpXCJqMaS7Ks","block_timestamp":"1711967200319522261","block":{"block_height":115912013},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"FUNCTION_CALL","method":"set","deposit":1e23,"fee":9.413957597627001e20,"args":"{\"data\": {\"testing-astradao.sputnik-dao.near\": {\"post\": {\"main\": \"{\\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"md\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Hi NEAR, this is my first comment using Astra++ feed\\\\\\\\\\\\'s compose.\\\\\\\\\\\\\\\\ncc: @saswat_m.near\\\\\\\\\\\\\\\"}\"}, \"index\": {\"post\": \"{\\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"main\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"md\\\\\\\\\\\\\\\"}}\", \"notify\": \"{\\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"saswat_m.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"mention\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"item\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"social\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"path\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"testing-astradao.sputnik-dao.near/post/main\\\\\\\\\\\\\\\"}}}\"}}}, \"options\": {\"refund_unused_deposit\": true}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.5451735968103e21}},{"id":"3470351388","receipt_id":"4vhT1XKswhpQJUz3vyoHxHYioHbnW5oV4KozbcE8XjYc","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HuqGExvcgFUgcX8vtf3ym5NHQ8DTrkwqEpqJ6d2foox6","block_height":115912015,"block_timestamp":1711967202824539400},"receipt_outcome":{"gas_burnt":4118520453856.0,"tokens_burnt":4.118520453856e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2zo4pXQUEzt2y8cpCAEhjuV1Nz4EQxSzhkH9QirTd53d","included_in_block_hash":"6SAJ1eNGmxEgc5VCDVSpxAZnchiPnyTnjpXCJqMaS7Ks","block_timestamp":"1711967200319522261","block":{"block_height":115912013},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":4.118520453856e20,"args":"{\"proposal_id\": 3}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.5451735968103e21}},{"id":"3470351775","receipt_id":"t8TqkF8bCyvCox1V9vGyWTvUcHbXnMeP9YpjFmVrBPY","predecessor_account_id":"social.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9z4xkPFUkuDYSdZdumTFibGvSPWjNB5Uge8fPeW5FT3j","block_height":115912016,"block_timestamp":1711967204270353200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2zo4pXQUEzt2y8cpCAEhjuV1Nz4EQxSzhkH9QirTd53d","included_in_block_hash":"6SAJ1eNGmxEgc5VCDVSpxAZnchiPnyTnjpXCJqMaS7Ks","block_timestamp":"1711967200319522261","block":{"block_height":115912013},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"TRANSFER","method":null,"deposit":8.127e22,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.5451735968103e21}},{"id":"3470352354","receipt_id":"8em8kwmZqCEh5vQNr5VseYyz5yPvgi8y1jNTgojyqN2K","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7EbCmsoXDpT69xjCQRorQW2ZDEJ1j4aW5dt2hEa1crnp","block_height":115912017,"block_timestamp":1711967205560257800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"2zo4pXQUEzt2y8cpCAEhjuV1Nz4EQxSzhkH9QirTd53d","included_in_block_hash":"6SAJ1eNGmxEgc5VCDVSpxAZnchiPnyTnjpXCJqMaS7Ks","block_timestamp":"1711967200319522261","block":{"block_height":115912013},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.5451735968103e21}},{"id":"3470411008","receipt_id":"5fpL4NCh3XabfisdmXYMFNGTf4H8DShgCTc4JLXmdgWM","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7j6aDKJsAKtKqwb8uxRLQKS5BNnEaaSGGdTRjBmMuvGt","block_height":115912145,"block_timestamp":1711967375222766600},"receipt_outcome":{"gas_burnt":3254416535167.0,"tokens_burnt":3.254416535167e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"5bcd83wDR6mZTKD6N5ZMuVwSgrWCgN6ocrsLiKS9f9G3","included_in_block_hash":"Rin16ndgfAtera8VdfK1cAmuPLdBSZNaXQei8xpb7en","block_timestamp":"1711967373874131604","block":{"block_height":115912144},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.254416535167e20,"args":"{\"id\": 3, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":5.682433680329e20}},{"id":"3686561426","receipt_id":"EAu7wpyE5U6ShnMXoVo39ANyDZajXh1vZRTdpNtzqEYj","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8WxuTehT5HGaNfSjFkVtLeY22AQRjHXrB9T7zb7AVKM3","block_height":116399518,"block_timestamp":1712586665062990600},"receipt_outcome":{"gas_burnt":3854466916391.0,"tokens_burnt":3.854466916391e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HYQZtj5r2k9xYSVw1RNThXjsgHKUP96c5UhPP5kBdYFT","included_in_block_hash":"AevADCjzG2LjqBwPBKb4wnpM62bc7qN4qtpsajw2eGLp","block_timestamp":"1712586663177653721","block":{"block_height":116399517},"receipt_conversion_tokens_burnt":"242917983084200000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":3.854466916391e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJkYXRhIjp7InRlc3RpbmctYXN0cmFkYW8uc3B1dG5pay1kYW8ubmVhciI6eyJwb3N0Ijp7Im1haW4iOiJ7XCJ0eXBlXCI6XCJtZFwiLFwidGV4dFwiOlwiSGV5ISwgVGhpcyBpcyBteSBmaXJzdCBjb21tZW50ICMxXCJ9In0sImluZGV4Ijp7InBvc3QiOiJ7XCJrZXlcIjpcIm1haW5cIixcInZhbHVlXCI6e1widHlwZVwiOlwibWRcIn19In19fSwib3B0aW9ucyI6eyJyZWZ1bmRfdW51c2VkX2RlcG9zaXQiOnRydWV9fQ==\", \"deposit\": \"100000000000000000000000\", \"method_name\": \"set\"}], \"receiver_id\": \"social.near\"}}, \"description\": \"Social Feed post created by saswat_m.near\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":6.283646747233e20}},{"id":"3686592613","receipt_id":"wnU5RkfFxKGp7fuNEUyjbbHZ4uYA5QxoPyE7zS7FotB","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"22vR3WHAbEgRozPU6NyrwaG8m8vrheYMXTsXTEqqDitU","block_height":116399567,"block_timestamp":1712586726227320800},"receipt_outcome":{"gas_burnt":3809462192513.0,"tokens_burnt":3.809462192513e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"E8t8HgnWbuMrTBanhjtp5cC8TXv73PYV7dn6TYHFTMYc","included_in_block_hash":"2AYSJqw54H3VcwRtgqLP5nr2vE3NeBYYuKDmpUFsuLsH","block_timestamp":"1712586725102350484","block":{"block_height":116399566},"receipt_conversion_tokens_burnt":"242912616842600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":3.809462192513e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJkYXRhIjp7InRlc3RpbmctYXN0cmFkYW8uc3B1dG5pay1kYW8ubmVhciI6eyJwb3N0Ijp7Im1haW4iOiJ7XCJ0eXBlXCI6XCJtZFwiLFwidGV4dFwiOlwiVGVzdCBjb21tZW50ICMyXCJ9In0sImluZGV4Ijp7InBvc3QiOiJ7XCJrZXlcIjpcIm1haW5cIixcInZhbHVlXCI6e1widHlwZVwiOlwibWRcIn19In19fSwib3B0aW9ucyI6eyJyZWZ1bmRfdW51c2VkX2RlcG9zaXQiOnRydWV9fQ==\", \"deposit\": \"100000000000000000000000\", \"method_name\": \"set\"}], \"receiver_id\": \"social.near\"}}, \"description\": \"Social Feed post created by saswat_m.near\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":6.238588360939e20}},{"id":"3688074114","receipt_id":"GeYpSFaeePzqRFateCZn2gR5RSLpowggsKKeJQE3FgoH","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9UgZpRBTabMgB5gBSYWvAXAJFWfUDEf3sxbZgcEhykmy","block_height":116402941,"block_timestamp":1712590968491960600},"receipt_outcome":{"gas_burnt":3966600640033.0,"tokens_burnt":3.966600640033e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EDnWYHEoLfV8mAY8LXdEkVMmSN6sSmX3hJM8rwgFtvQb","included_in_block_hash":"ARpDP7vx21gKr8xnY5XbNkSVjAk8QNjLxesRfNfgqzWk","block_timestamp":"1712590967297512345","block":{"block_height":116402940},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.966600640033e20,"args":"{\"id\": 5, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":6.394617785195e20}},{"id":"3688109400","receipt_id":"5rp7CvKM8vnhwdSV6BAsg5ucBwhDg2JP9CbCodtWU67k","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DwNExVhrGhX9wxuuGr2guWPwYdrN3SpiBkfxx8ed4Gwq","block_height":116403009,"block_timestamp":1712591051879944700},"receipt_outcome":{"gas_burnt":8989386722367.0,"tokens_burnt":8.989386722367e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2tAmB5KW5sidD4Rm93FSkqVD7gtdFp1LAHytu91NjA6m","included_in_block_hash":"238SJAHF52w7prTi1sjvGX3vVCBJHBy2hRtcyYPo7YPF","block_timestamp":"1712591050954838787","block":{"block_height":116403008},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":8.989386722367e20,"args":"{\"id\": 5, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.292885228339e21}},{"id":"3688109834","receipt_id":"H4dcBRshckUvY8rLiQpV1WdqPk3mqy5KT6UMcX3epz5W","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"social.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"724m3ivCw2hVy6hcPrDSqHm5jFQdQRFFfHNPHV6K2AH","block_height":116403010,"block_timestamp":1712591052989102000},"receipt_outcome":{"gas_burnt":6887957177869.0,"tokens_burnt":6.887957177869e20,"executor_account_id":"social.near","status":true},"transaction_hash":"2tAmB5KW5sidD4Rm93FSkqVD7gtdFp1LAHytu91NjA6m","included_in_block_hash":"238SJAHF52w7prTi1sjvGX3vVCBJHBy2hRtcyYPo7YPF","block_timestamp":"1712591050954838787","block":{"block_height":116403008},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"FUNCTION_CALL","method":"set","deposit":1e23,"fee":6.887957177869e20,"args":"{\"data\": {\"testing-astradao.sputnik-dao.near\": {\"post\": {\"main\": \"{\\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"md\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"text\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Test comment #2\\\\\\\\\\\\\\\"}\"}, \"index\": {\"post\": \"{\\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"main\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\\"type\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"md\\\\\\\\\\\\\\\"}}\"}}}, \"options\": {\"refund_unused_deposit\": true}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.292885228339e21}},{"id":"3688109841","receipt_id":"CzFA63udjNhvNX3B7uo3qaDyGM8BmPXkzGdemdHsihkY","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"724m3ivCw2hVy6hcPrDSqHm5jFQdQRFFfHNPHV6K2AH","block_height":116403010,"block_timestamp":1712591052989102000},"receipt_outcome":{"gas_burnt":4177126112992.0,"tokens_burnt":4.177126112992e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2tAmB5KW5sidD4Rm93FSkqVD7gtdFp1LAHytu91NjA6m","included_in_block_hash":"238SJAHF52w7prTi1sjvGX3vVCBJHBy2hRtcyYPo7YPF","block_timestamp":"1712591050954838787","block":{"block_height":116403008},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":4.177126112992e20,"args":"{\"proposal_id\": 5}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.292885228339e21}},{"id":"3688110202","receipt_id":"5o7cNWrMER4HPj134ZSSdY18QE6J8YZatZHdZMKQ8mDn","predecessor_account_id":"social.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5dNWHfMZS5Q9w8z6NRhy4sK4XtNwuo7JfSDubZrdvTNm","block_height":116403011,"block_timestamp":1712591054216916500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2tAmB5KW5sidD4Rm93FSkqVD7gtdFp1LAHytu91NjA6m","included_in_block_hash":"238SJAHF52w7prTi1sjvGX3vVCBJHBy2hRtcyYPo7YPF","block_timestamp":"1712591050954838787","block":{"block_height":116403008},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.292885228339e21}},{"id":"3688110509","receipt_id":"9DRfn6kHJMCgZXWPEqTaf9yM7werLWFFGnUKkeSFrG2f","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"saswat_m.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DvHCEN6bH1Zd1VC4rKTz8TA17CeTaQq6B8SfHExMwTNB","block_height":116403012,"block_timestamp":1712591055333251300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"saswat_m.near","status":true},"transaction_hash":"2tAmB5KW5sidD4Rm93FSkqVD7gtdFp1LAHytu91NjA6m","included_in_block_hash":"238SJAHF52w7prTi1sjvGX3vVCBJHBy2hRtcyYPo7YPF","block_timestamp":"1712591050954838787","block":{"block_height":116403008},"receipt_conversion_tokens_burnt":"242801714516200000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.292885228339e21}},{"id":"4010315273","receipt_id":"FpSGrpGcGnwbYPUXsy5npv7mi8aiCtHXzNpZxLANR9Vd","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"F7XgTKCrawiHLeS9wtJzVy52RwAbuvrnysnb8UApm8YM","block_height":117175963,"block_timestamp":1713535690186721800},"receipt_outcome":{"gas_burnt":2701527022795.0,"tokens_burnt":2.7015270227949997e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"F1Lofj3eZbZKw2qQryXKHteh792LEYorzRBFjVqg9DcJ","included_in_block_hash":"A5p1butgGfWiW4jGbFJDUVHeJZp8Wfk2NM78qquLaX7i","block_timestamp":"1713535688972817234","block":{"block_height":117175962},"receipt_conversion_tokens_burnt":"30837029482600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.7015270227949997e20,"args":"{\"proposal\": {\"kind\": {\"RemoveMemberFromRole\": {\"role\": \"council\", \"member_id\": \"saswat_m.near\"}}, \"description\": \"Remove DAO member\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.0098973176210004e20}},{"id":"4010677451","receipt_id":"82cyEvFB8eLAZZYwEkXnQ9BfLBE1MS4F51wAcEmZFKT8","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9CoquunJ63DgfF9buMVvd8WNB85Fwmi9Y95qQT2r2Pxy","block_height":117176810,"block_timestamp":1713536844767375600},"receipt_outcome":{"gas_burnt":2943806403925.0,"tokens_burnt":2.9438064039250002e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3iwxHknGnEjZxw6KieTmLJQEUTGWr9pKAQMVZER9DSNR","included_in_block_hash":"2vZqNArjs5HwLTnQa56B1PbCsCnGzd3x7g1VHjHHCqKi","block_timestamp":"1713536841595250364","block":{"block_height":117176808},"receipt_conversion_tokens_burnt":"30815564516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.9438064039250002e20,"args":"{\"id\": 6, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.251962049087e20}},{"id":"4011845507","receipt_id":"HncCoAkKT16JR6Vi6M2Ba8LnGT8e55komq32gGqB74UD","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BoK1bE2vB8rZVmpF5FGVBTuJyWptNECAFuq4wSRqXGvU","block_height":117179740,"block_timestamp":1713540769626294800},"receipt_outcome":{"gas_burnt":3660478013191.0,"tokens_burnt":3.660478013191e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BNyifWWwuy2kMG4Z6FDDvQErdpe9UmuhbHBdayn1icAc","included_in_block_hash":"5GwxptYZdpwt8tU4nVeCVEUwAkQoMUsQ36BKMha2gd7g","block_timestamp":"1713540768211724315","block":{"block_height":117179739},"receipt_conversion_tokens_burnt":"30815564516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.660478013191e20,"args":"{\"id\": 6, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.191816220853e20}},{"id":"4011846389","receipt_id":"Gybn6XtxnLp6wHUmpqm22pgwFnuVwjc8yuTwqHPBLzbv","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Fys95vYyBcWMUxdwk7mVaJ4mrov9YGepjspLXVbLMf47","block_height":117179743,"block_timestamp":1713540773877209900},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"BNyifWWwuy2kMG4Z6FDDvQErdpe9UmuhbHBdayn1icAc","included_in_block_hash":"5GwxptYZdpwt8tU4nVeCVEUwAkQoMUsQ36BKMha2gd7g","block_timestamp":"1713540768211724315","block":{"block_height":117179739},"receipt_conversion_tokens_burnt":"30815564516200000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.191816220853e20}},{"id":"4194308218","receipt_id":"aYEDVuA49dRwLYNuVV8dGnGVV2ix37555vLAFwFaWrM","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FWH8sPBbGwhPD4e6rLvngcozgASQEC56anbcPSruKbVF","block_height":117643303,"block_timestamp":1714109354344831200},"receipt_outcome":{"gas_burnt":1648211478885.0,"tokens_burnt":1.648211478885e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"BynbiYyDdwJZnqFi952Ekv49KmAqi6viksdzvGv3WJ4P","included_in_block_hash":"2CjqYt6xH2BGS2uH7gSQxE13H1LR2m6YE4uJyQm8cu61","block_timestamp":"1714109351766473017","block":{"block_height":117643301},"receipt_conversion_tokens_burnt":"30856258515000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":1.648211478885e20,"args":"{\"proposal\": {\"kind\": {\"AddBounty\": {\"bounty\": {\"times\": \"5\", \"token\": \"\", \"amount\": \"10000000000000000000000\", \"description\": \"Tetsing bounty using Astra++\", \"max_deadline\": \"360000000\"}}}, \"description\": \"New Bounty created\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":1.956774064035e20}},{"id":"4194326581","receipt_id":"D76hMjSY3eKbWCixuPcBQxHtNLrFKoBEdQUhGV7qiaW4","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6NnhzShoHBCS5ZmDzuMnyU86eeVTrnQ27DDyX7jzHSni","block_height":117643361,"block_timestamp":1714109423719831600},"receipt_outcome":{"gas_burnt":2774912705224.0,"tokens_burnt":2.774912705224e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HwUEcETm99f2MQhNFxSQHeN9NJswzrSYVvaPYND4fmA8","included_in_block_hash":"9JijFUJkKMNRqcfV5smvDg4zopo8ZcsGXY8fhGd8FUQF","block_timestamp":"1714109422474287653","block":{"block_height":117643360},"receipt_conversion_tokens_burnt":"30855811328200000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.774912705224e20,"args":"{\"proposal\": {\"kind\": {\"AddBounty\": {\"bounty\": {\"times\": 5, \"token\": \"\", \"amount\": \"10000000000000000000000\", \"description\": \"Testing bounty using Astra++\", \"max_deadline\": \"360000000\"}}}, \"description\": \"New Bounty created\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.0834708185059996e20}},{"id":"4194347925","receipt_id":"Gd2LZcgm1j9iZfhgPZYp6jAyM6K7duiCvrLuGV7k68Uy","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DGaj2zoTcNKNVth9YSufmmdiJFeDmRgPziaKXwVT53LM","block_height":117643432,"block_timestamp":1714109503668043000},"receipt_outcome":{"gas_burnt":3260743930900.0,"tokens_burnt":3.2607439308999996e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"ANvX1xR9piGSLwrezqgabuEx8ERZBL9Fef4tFyN8DDDg","included_in_block_hash":"3JYrnWBJBCsYkHMfRX9d1T5GSvxG97Ho7UDJ5maT4wnk","block_timestamp":"1714109502387530799","block":{"block_height":117643431},"receipt_conversion_tokens_burnt":"30815564516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.2607439308999996e20,"args":"{\"id\": 7, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.7920821385619997e20}},{"id":"4194348411","receipt_id":"8XbrLXGSW4PcpHfEMj7XgUHQLc7v3D6G59E3jDv6uKEh","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7eK46iu6Ur3h2ztoEPjUbrso3aZYxUMbT29E5C2PEgZ7","block_height":117643433,"block_timestamp":1714109504923302100},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"ANvX1xR9piGSLwrezqgabuEx8ERZBL9Fef4tFyN8DDDg","included_in_block_hash":"3JYrnWBJBCsYkHMfRX9d1T5GSvxG97Ho7UDJ5maT4wnk","block_timestamp":"1714109502387530799","block":{"block_height":117643431},"receipt_conversion_tokens_burnt":"30815564516200000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.7920821385619997e20}},{"id":"4194562565","receipt_id":"buTPDi7oexkJ783VB2qbamQ461dFFUcMebiWMYxyGrc","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"C3oAeWFvx4ycCgBV1WjDTeL7j2VRcTgDXEYe76vYceS5","block_height":117644234,"block_timestamp":1714110441791297500},"receipt_outcome":{"gas_burnt":2861698066507.0,"tokens_burnt":2.8616980665069997e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EA6NXfWUsxiQ8zpvftmKsWRjxb53ij7DdFpkS9KvkdvD","included_in_block_hash":"GCXUENAQRbRDxqkHAZfYW58KSnQ1x8vuS9b7gZ3vdSFw","block_timestamp":"1714110440636413112","block":{"block_height":117644233},"receipt_conversion_tokens_burnt":"30815564516200000000","actions":[{"action":"FUNCTION_CALL","method":"bounty_claim","deposit":1e23,"fee":2.8616980665069997e20,"args":"{\"id\": 0, \"deadline\": \"360000000\"}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.169853711669e20}},{"id":"4198651914","receipt_id":"9NUEA2h72Jx7pP6r9Kh6X2smG1jwTgLJJDJazaU1fzGo","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Hu31cB1BvPqayTS2HZupPjJNBiCWoqRU44YrY34UmuDe","block_height":117656968,"block_timestamp":1714125679952601600},"receipt_outcome":{"gas_burnt":2719887561592.0,"tokens_burnt":2.719887561592e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BPjcTLuDR4Sra8Yb4arLGRpDCR5GkRX4UAkCoNgwgiqR","included_in_block_hash":"9BLTSRwkx24v9RNjyi3dL1EmYK49a8Keu2AQq3tdFJaS","block_timestamp":"1714125678123639663","block":{"block_height":117656967},"receipt_conversion_tokens_burnt":"30856482108400000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.719887561592e20,"args":"{\"proposal\": {\"kind\": {\"AddBounty\": {\"bounty\": {\"times\": 6, \"token\": \"\", \"amount\": \"10000000000000000000000\", \"description\": \"Testing bounty\", \"max_deadline\": \"630000000\"}}}, \"description\": \"New Bounty proposed by megha19.near\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.028452382676e20}},{"id":"4694514154","receipt_id":"4EsXJuz3eMZq27q2qjZqvHxU9VKs7y5FNjLThNspsQwz","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FirYDaH36SCDLUo9BbMYMH42aaWgKcD8gXrF9Z5Bru3g","block_height":118922374,"block_timestamp":1715718000552336000},"receipt_outcome":{"gas_burnt":2059788827722.0,"tokens_burnt":2.059788827722e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"EhHrzsH9osRforci8FuWrUdspQV7yV1JrChZswDj52mT","included_in_block_hash":"8nJ9CURiRjj5FVKPJTWcX6fcbNi8FaoipT9BgeEA9iYU","block_timestamp":"1715717999318415517","block":{"block_height":118922373},"receipt_conversion_tokens_burnt":"30820259977600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.059788827722e20,"args":"{\"proposal\": {\"kind\": \"Vote\", \"description\": \"testing\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.3679914274979997e20}},{"id":"4694600971","receipt_id":"3p1nGzgogNP9g5LxJpAoPWEmV7YC6zpZnGnKBTkEcGND","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9SVequ3qi5qFcUmzJ9dKxBwcMWonuvx3cgvHr36WNdgs","block_height":118922594,"block_timestamp":1715718263002633000},"receipt_outcome":{"gas_burnt":2059788827722.0,"tokens_burnt":2.059788827722e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"2c261BiKp5SdBFSrXCQ1DN89jV9N6Y1rKEEq8cwoGGgP","included_in_block_hash":"68MtHf1Lojkn6mnc3u5Jfs9Utns4dWdNuJbefLW9xS9H","block_timestamp":"1715718261653513799","block":{"block_height":118922593},"receipt_conversion_tokens_burnt":"30820259977600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.059788827722e20,"args":"{\"proposal\": {\"kind\": \"Vote\", \"description\": \"testing\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.3679914274979997e20}},{"id":"4694604849","receipt_id":"GHDvcRGnrMcoKDxdLwi7dHAQ7qRU6H1orRMn1coxfdHo","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"U2j9XSQb31xtNpXPfpegM5cZDojTEjEh8T6f8BtCQG6","block_height":118922608,"block_timestamp":1715718278450168600},"receipt_outcome":{"gas_burnt":2059788827722.0,"tokens_burnt":2.059788827722e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"Fs9XDzhr4dqLgHsjKPk1kjRZ7obmPQMLjbVZXQbWeZtN","included_in_block_hash":"2Cui9AGxnqo93jAyaPBeMHgVGkd2uyHB3E1jFHkWGziu","block_timestamp":"1715718277617535998","block":{"block_height":118922607},"receipt_conversion_tokens_burnt":"30820259977600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.059788827722e20,"args":"{\"proposal\": {\"kind\": \"Vote\", \"description\": \"testing\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.3679914274979997e20}},{"id":"4694669949","receipt_id":"8DBQhf5QL25Qehtf1spzy1XJ6mRoGiAg5qgBZGvSCt8X","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2CeABjpzHcLr82GG87WJTWdMY2M1pznG7S2CmnCrCQEM","block_height":118922746,"block_timestamp":1715718443667870000},"receipt_outcome":{"gas_burnt":2059788827722.0,"tokens_burnt":2.059788827722e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"GKAi8wHtqc6HV8YTGSiMyRZdCAcMowD8hnv1fxCVzwRq","included_in_block_hash":"Cqj9X3kfPdUnCTU7PHVvPHKy4sw7WiCwrooMxBRQHDJd","block_timestamp":"1715718442762983996","block":{"block_height":118922745},"receipt_conversion_tokens_burnt":"30820259977600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.059788827722e20,"args":"{\"proposal\": {\"kind\": \"Vote\", \"description\": \"testing\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.3679914274979997e20}},{"id":"4705222444","receipt_id":"DwuPkg9M3i7zwqgLQDwox4MgsxevZkWaEkY5TzE44RFp","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"A4UVAkyMRTeFZdpYsTY1xUR6HkSNnhs6WLSzFyREEQcS","block_height":118953236,"block_timestamp":1715754341852504800},"receipt_outcome":{"gas_burnt":2059788827722.0,"tokens_burnt":2.059788827722e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"FhN1cdHCreaDfB4D5mzVgT7GMH5rZxdkanT6goSrRjwx","included_in_block_hash":"5weNQgBiaDa3YABLtnQxFQBridfNzGwmPnY5PVMrvfXv","block_timestamp":"1715754340515628909","block":{"block_height":118953235},"receipt_conversion_tokens_burnt":"30820259977600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.059788827722e20,"args":"{\"proposal\": {\"kind\": \"Vote\", \"description\": \"Testing\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.3679914274979997e20}},{"id":"4706872718","receipt_id":"DttVePqc1ZHJrMW6mTHXCKonSKNscitW2gzyguys4sZR","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4FzSm2WmhmZD96Fe1xGLoDYQJMdxEiFLKnLPbu9b21xT","block_height":118957817,"block_timestamp":1715759773159697400},"receipt_outcome":{"gas_burnt":3780570792748.0,"tokens_burnt":3.780570792748e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"Buc8Cz9dcU3jucGe7iqP1Eu75Ps45MtnznxCzQZfZjJG","included_in_block_hash":"GJdDvG4cFemSLZ26XGBFC2uFxkwrohjgRt15JuUnVw7Z","block_timestamp":"1715759772146035278","block":{"block_height":118957816},"receipt_conversion_tokens_burnt":"31440060882400000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":3.780570792748e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"council\", \"permissions\": [\"add_member_to_role:AddProposal\", \"bounty_done:VoteApprove\", \"add_bounty:VoteReject\", \"add_bounty:AddProposal\", \"config:VoteReject\", \"add_bounty:VoteApprove\", \"remove_member_from_role:VoteReject\", \"policy:VoteRemove\", \"transfer:VoteRemove\", \"vote:VoteApprove\", \"upgrade_self:VoteApprove\", \"call:VoteRemove\", \"upgrade_self:AddProposal\", \"upgrade_remote:AddProposal\", \"upgrade_remote:VoteReject\", \"upgrade_remote:VoteApprove\", \"vote:AddProposal\", \"add_member_to_role:VoteReject\", \"bounty_done:VoteReject\", \"call:AddProposal\", \"upgrade_self:VoteRemove\", \"add_bounty:VoteRemove\", \"remove_member_from_role:VoteRemove\", \"config:VoteRemove\", \"call:VoteApprove\", \"add_member_to_role:VoteRemove\", \"policy:AddProposal\", \"add_member_to_role:VoteApprove\", \"policy:VoteApprove\", \"transfer:VoteApprove\", \"config:AddProposal\", \"*:Finalize\", \"remove_member_from_role:VoteApprove\", \"set_vote_token:VoteReject\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"policy:VoteReject\", \"set_vote_token:VoteRemove\", \"remove_member_from_role:AddProposal\", \"transfer:VoteReject\", \"transfer:AddProposal\", \"call:VoteReject\", \"upgrade_remote:VoteRemove\", \"upgrade_self:VoteReject\", \"vote:VoteReject\", \"bounty_done:VoteRemove\", \"vote:VoteRemove\", \"set_vote_token:VoteApprove\", \"config:VoteApprove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [68, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": \"Everyone\", \"name\": \"all\", \"permissions\": [\"add_bounty:AddProposal\", \"bounty_done:AddProposal\", \"transfer:AddProposal\", \"vote:AddProposal\", \"remove_member_from_role:AddProposal\", \"add_member_to_role:AddProposal\", \"call:AddProposal\"], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.0949714015719994e20}},{"id":"4706876991","receipt_id":"L8Vjchrjd3WHzTck29QAaCuMi5ah8nwQFxA91sXN3vZ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3D16sU82Dxk6xjPDrP16SfkP52cQFBHVRaGyL8ehDSiZ","block_height":118957838,"block_timestamp":1715759795190568200},"receipt_outcome":{"gas_burnt":4490900786461.0,"tokens_burnt":4.4909007864610003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"63x328n79ApusNtBfjegAUDUqfQEyNttCpB361eUdi2h","included_in_block_hash":"Fh57Q6T2ZM2rCnnUTh4m42rvU9kw2WM4i9MEYVghxz8n","block_timestamp":"1715759794078298091","block":{"block_height":118957837},"receipt_conversion_tokens_burnt":"30815564516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.4909007864610003e20,"args":"{\"id\": 9, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.022238994123e20}},{"id":"4706877299","receipt_id":"8t7ZfLsTcJPv9kHiKrFsLuMUScLN2oWvpUcT5ygfJSVF","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3SVKrVNhsvofSP1Xhmd9qTPr8wgiQTgj7EVLLMaTfopR","block_height":118957839,"block_timestamp":1715759796409366300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"63x328n79ApusNtBfjegAUDUqfQEyNttCpB361eUdi2h","included_in_block_hash":"Fh57Q6T2ZM2rCnnUTh4m42rvU9kw2WM4i9MEYVghxz8n","block_timestamp":"1715759794078298091","block":{"block_height":118957837},"receipt_conversion_tokens_burnt":"30815564516200000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.022238994123e20}},{"id":"4707143449","receipt_id":"2FxQGM8UToBLBK3Jt9qX17Y58EaHob4Jr9LEohw7yHvS","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5cV7GY2zPRNYUnaZZWPrYUqYjvYVzVM2bn1BMMMC6gj2","block_height":118958431,"block_timestamp":1715760542390556400},"receipt_outcome":{"gas_burnt":2692904596393.0,"tokens_burnt":2.692904596393e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7hNUSweczZKzpydmdyUkth9CoJMippWQZRSQ87dxVPK4","included_in_block_hash":"CXUJrPa2Q81xRwN3Fsth7NW62ie7SM4rnZc8tZdK37QR","block_timestamp":"1715760541538261233","block":{"block_height":118958430},"receipt_conversion_tokens_burnt":"30820259977600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.692904596393e20,"args":"{\"proposal\": {\"kind\": \"Vote\", \"description\": \"testing\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.001107196169e20}},{"id":"4707257430","receipt_id":"AMw9EYecyhUDmdShSDnWwYDDtr7siGo87jauZVZNjYzY","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GU4BfqUnnpLuPNWMGBigcaEXUi7RrFjy2R6EN5WbWR4P","block_height":118958730,"block_timestamp":1715760924622939400},"receipt_outcome":{"gas_burnt":2706726552319.0,"tokens_burnt":2.706726552319e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2PXiefStxP73DoEYxnZ7GVhhmJcrHTLfpQosHAyRqWfg","included_in_block_hash":"43fbnTjh7GvyEAgqNK7sTCdwiaRk2HxjotsW4eSZCuMJ","block_timestamp":"1715760923340292683","block":{"block_height":118958729},"receipt_conversion_tokens_burnt":"30820259977600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.706726552319e20,"args":"{\"proposal\": {\"kind\": \"Vote\", \"description\": \"testing\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.0149291520950003e20}},{"id":"4707375635","receipt_id":"GRECZHj8aziBSRW6sAuoXFMDxYzEgaQKktnUFdByUmf9","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6DEuLBJWSFAdPJXoayg3bAW2sk1pCbDxxTXcsaFwRpuo","block_height":118959081,"block_timestamp":1715761329133693200},"receipt_outcome":{"gas_burnt":2748192420097.0,"tokens_burnt":2.748192420097e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HTvNZjN3jy8Cksof4kjpYdfPCGCJzQeH5AVQVbEqMCWJ","included_in_block_hash":"DejZaJGTdT1efPoScW1uyKjbqaJt5pXiVixg4xwVAcv9","block_timestamp":"1715761327976136593","block":{"block_height":118959080},"receipt_conversion_tokens_burnt":"30820259977600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.748192420097e20,"args":"{\"proposal\": {\"kind\": \"Vote\", \"description\": \"testing\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.056395019873e20}},{"id":"4707638587","receipt_id":"7jaVWmnYMfogHDikmB2uELE3qLEqmgHnTa8LTEE94x4f","predecessor_account_id":"saswat_m.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3oYfHvZ3EL2gja1xLnGTqo3RGJaABZo32MJdp2UVs7xC","block_height":118959698,"block_timestamp":1715762069028689400},"receipt_outcome":{"gas_burnt":2668176640797.0,"tokens_burnt":2.6681766407970003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"8DRCUVdukVGfooqrcjhq7racC1ydifWM4jpoe6khH2y2","included_in_block_hash":"Gsud6zmq242dvn6ujJ2qgGx3QcTCsC3rswaPTtUL43cu","block_timestamp":"1715762067665847572","block":{"block_height":118959697},"receipt_conversion_tokens_burnt":"30828085746600000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.6681766407970003e20,"args":"{\"proposal\": {\"kind\": \"Vote\", \"description\": \"[EMBED](saswat_m.near/post/main@118959640)\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.976457498263e20}},{"id":"7220915341","receipt_id":"Bp6euWAR3H2rzRovXA2Qp6E7MS8dfCoTNhifPQSkUEPE","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3dEBnxt8gq1wrmZpWn5WZGY3oHUTJ6yQ7E68BogHb4Pr","block_height":125166484,"block_timestamp":1722966972541009400},"receipt_outcome":{"gas_burnt":3790172376781.0,"tokens_burnt":3.790172376781e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"B2yCMWxkPhdB8vQKpXp9jqLbEr9sBzDu1c6j8zXZJ1Qp","included_in_block_hash":"8dEHLvjCfWWJGEzUDkKGtUhjpF9EHa9dMfp7TExKpK2a","block_timestamp":"1722966971588473590","block":{"block_height":125166483},"receipt_conversion_tokens_burnt":"31456159607200000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":3.790172376781e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"council\", \"permissions\": [\"add_member_to_role:AddProposal\", \"bounty_done:VoteApprove\", \"add_bounty:VoteReject\", \"add_bounty:AddProposal\", \"config:VoteReject\", \"add_bounty:VoteApprove\", \"remove_member_from_role:VoteReject\", \"policy:VoteRemove\", \"transfer:VoteRemove\", \"vote:VoteApprove\", \"upgrade_self:VoteApprove\", \"call:VoteRemove\", \"upgrade_self:AddProposal\", \"upgrade_remote:AddProposal\", \"upgrade_remote:VoteReject\", \"upgrade_remote:VoteApprove\", \"vote:AddProposal\", \"add_member_to_role:VoteReject\", \"bounty_done:VoteReject\", \"call:AddProposal\", \"upgrade_self:VoteRemove\", \"add_bounty:VoteRemove\", \"remove_member_from_role:VoteRemove\", \"config:VoteRemove\", \"call:VoteApprove\", \"add_member_to_role:VoteRemove\", \"policy:AddProposal\", \"add_member_to_role:VoteApprove\", \"policy:VoteApprove\", \"transfer:VoteApprove\", \"config:AddProposal\", \"*:Finalize\", \"remove_member_from_role:VoteApprove\", \"set_vote_token:VoteReject\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"policy:VoteReject\", \"set_vote_token:VoteRemove\", \"remove_member_from_role:AddProposal\", \"transfer:VoteReject\", \"transfer:AddProposal\", \"call:VoteReject\", \"upgrade_remote:VoteRemove\", \"upgrade_self:VoteReject\", \"vote:VoteReject\", \"bounty_done:VoteRemove\", \"vote:VoteRemove\", \"set_vote_token:VoteApprove\", \"config:VoteApprove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [20, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": \"Everyone\", \"name\": \"all\", \"permissions\": [\"add_member_to_role:AddProposal\", \"transfer:AddProposal\", \"bounty_done:AddProposal\", \"call:AddProposal\", \"remove_member_from_role:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\"], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.104733972853e20}},{"id":"7220922149","receipt_id":"46ZUeLCypLPW1tU42YRfvNFgEQsRSXXgUa5nU8277mJe","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4Xr9b5kze39E8TUhVJGZqypG4GYxCaDHgCHgiVnVRLh3","block_height":125166509,"block_timestamp":1722967000366741800},"receipt_outcome":{"gas_burnt":4649852345405.0,"tokens_burnt":4.6498523454049996e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3vFpfW753ZraVUoednPZZaHBpJ3QTcuX5maoKvM7299L","included_in_block_hash":"5V2cfnkjqGSktYnPZ4PAkX8BSxUPE2idDeY9bJD8tMan","block_timestamp":"1722966999410047401","block":{"block_height":125166508},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.6498523454049996e20,"args":"{\"id\": 14, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.181192789001e20}},{"id":"7220922646","receipt_id":"BDfeGB1FYRCVgPUZEEHYRG48smCXLRaBCHxmiDSDpQrU","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"623BzkLsgaidiHxiN7jHSwQKWEpYMiB47htpoPRqHSae","block_height":125166510,"block_timestamp":1722967001372694300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"3vFpfW753ZraVUoednPZZaHBpJ3QTcuX5maoKvM7299L","included_in_block_hash":"5V2cfnkjqGSktYnPZ4PAkX8BSxUPE2idDeY9bJD8tMan","block_timestamp":"1722966999410047401","block":{"block_height":125166508},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.181192789001e20}},{"id":"7222721641","receipt_id":"AQpzCgmg8U1zNKtvtaBA5hRoQHsgY5pRjXFYrw4sD65W","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EKnaLetYejnhgoiG4nCaHJFtcqKXpk8pcUFcQ6aF6nrw","block_height":125171732,"block_timestamp":1722972858013381400},"receipt_outcome":{"gas_burnt":2821031989915.0,"tokens_burnt":2.821031989915e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5YFa5ejBFtnUUS8J9Fp7bAsdt9sajVp8thX8pATH9kLe","included_in_block_hash":"4q9keDhBXnVWBLA3s4d3gDcCnLv4gcYXonLXd6riSa3e","block_timestamp":"1722972856742146444","block":{"block_height":125171731},"receipt_conversion_tokens_burnt":"30884654876800000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.821031989915e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"joespano.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Activities Report 7/22-8/4\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Moderator Contributions Bi-Weekly Report\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"this is notes\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":172}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.129878538683e20}},{"id":"7222853919","receipt_id":"ECCmLcP8V2zi6usbXe8HVaMQfwQKNYjNFHB3XL1TQThc","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"242eZXhXfQH1oNz9scKzucZpqDBmYkZ1pUiALXnyQLFo","block_height":125172074,"block_timestamp":1722973242468810200},"receipt_outcome":{"gas_burnt":2808015712887.0,"tokens_burnt":2.808015712887e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HbLgJaMxPmKrMtam7RHJp47ua7LBRa4UKUJitEGUtHZy","included_in_block_hash":"2DSq9qw3BTnWgJgfX8eZrHCY6M8hZ2fDFKk8MzzPcLqj","block_timestamp":"1722973241472873356","block":{"block_height":125172073},"receipt_conversion_tokens_burnt":"30971632709400000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.808015712887e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"5625000000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"petersalomonsen.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Developer Contributor report by Peter for 2024-05-21 - 2024-06-20\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Requesting funding for my DevHub contributions in the period 21th of May to 20th of June 2024. 37.5 hours in total. There have been various topics such as tests for the Infrastructure committee instance, creating the structure for maintaining multiple instances in the main devhub repository, support for multiple instances in the web4 social media landing pages and assistance in other tasks.\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":127}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.117732039981e20}},{"id":"7222862370","receipt_id":"CPpLek857c4kAE56JcpEKMcScfrcFG8NFbEG1TAgrUuB","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HjeHJLSUHcNnZArdbfaknRSDMSTWynfEq1inBBRnLcuU","block_height":125172109,"block_timestamp":1722973279685207300},"receipt_outcome":{"gas_burnt":3041488487798.0,"tokens_burnt":3.041488487798e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3S2ahzerJFm5MyvqRFNJs3VVWSwgQ3Nw8ekGRJEa5DAS","included_in_block_hash":"7TLKASYprYERNTTY7LeCkTx3b73oviBxpGx3JcqjW7c1","block_timestamp":"1722973278544963388","block":{"block_height":125172108},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.041488487798e20,"args":"{\"id\": 16, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.349646368894e20}},{"id":"7250977318","receipt_id":"2eaAx77DpWB6sx8wEDaVz1caFhrRSnQcm7U3GBYjC2Cb","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"B3naVRb9ni9WSFE3FZafPhsnKTS1UusUAs7WobBQ2Xb","block_height":125260386,"block_timestamp":1723071238094865700},"receipt_outcome":{"gas_burnt":2949449810332.0,"tokens_burnt":2.9494498103320003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"G6tqoiVs4RRfpwaMZQKgKYy6eJfgoYKhh33yfTs88Szw","included_in_block_hash":"BjbEbtGiDVfu9mr5ojH2SfAjA9QJPuxEBueEwhkoCKwe","block_timestamp":"1723071237174247977","block":{"block_height":125260385},"receipt_conversion_tokens_burnt":"30815564516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.9494498103320003e20,"args":"{\"id\": 15, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.257605455494e20}},{"id":"7268802310","receipt_id":"FX5i9JYJrtbQ75qUwPTTvdpfsvB7U5fgm4MN3uSjuiJC","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DCwoBc4EQG8yvGaV2B9EWPh2eQH2bFm3GQChBku1C7nP","block_height":125319244,"block_timestamp":1723136262822857500},"receipt_outcome":{"gas_burnt":3832019446830.0,"tokens_burnt":3.8320194468300004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EAkLGwHpqdJv4CToYw1rG9kmXTBQu3vmnAU7nRc6n8Pd","included_in_block_hash":"5rH5EQ3VQ4ERy81YWWPFZLatquuE37a7XsrVGRizHNy7","block_timestamp":"1723136261730036825","block":{"block_height":125319243},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.8320194468300004e20,"args":"{\"id\": 16, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.453006715933e20}},{"id":"7268802634","receipt_id":"9psyZmMJ71ks2oQjM6dYgk2k9onyH7Re1VUEndmeVTnN","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","receipt_kind":"ACTION","receipt_block":{"block_hash":"C9PyFQvfCJxsNWznsjW28AA5Ts6DfXDwj5UcfLzWENaG","block_height":125319245,"block_timestamp":1723136263874564900},"receipt_outcome":{"gas_burnt":1799186716586.0,"tokens_burnt":1.799186716586e20,"executor_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","status":false},"transaction_hash":"EAkLGwHpqdJv4CToYw1rG9kmXTBQu3vmnAU7nRc6n8Pd","included_in_block_hash":"5rH5EQ3VQ4ERy81YWWPFZLatquuE37a7XsrVGRizHNy7","block_timestamp":"1723136261730036825","block":{"block_height":125319243},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer","deposit":1.0,"fee":1.799186716586e20,"args":"{\"memo\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Developer Contributor report by Peter for 2024-05-21 - 2024-06-20\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Requesting funding for my DevHub contributions in the period 21th of May to 20th of June 2024. 37.5 hours in total. There have been various topics such as tests for the Infrastructure committee instance, creating the structure for maintaining multiple instances in the main devhub repository, support for multiple instances in the web4 social media landing pages and assistance in other tasks.\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":127}\", \"amount\": \"5625000000\", \"receiver_id\": \"petersalomonsen.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.453006715933e20}},{"id":"7268802638","receipt_id":"9n1CpR4wzjNNmf81ha2G8DaT6gUqbuMjBrqgy2xJ6zcN","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"C9PyFQvfCJxsNWznsjW28AA5Ts6DfXDwj5UcfLzWENaG","block_height":125319245,"block_timestamp":1723136263874564900},"receipt_outcome":{"gas_burnt":2513642671421.0,"tokens_burnt":2.5136426714210003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EAkLGwHpqdJv4CToYw1rG9kmXTBQu3vmnAU7nRc6n8Pd","included_in_block_hash":"5rH5EQ3VQ4ERy81YWWPFZLatquuE37a7XsrVGRizHNy7","block_timestamp":"1723136261730036825","block":{"block_height":125319243},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":2.5136426714210003e20,"args":"{\"proposal_id\": 16}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.453006715933e20}},{"id":"7268802745","receipt_id":"EM5kah5n66Ybxx9B3qsftYr2E5G854NWDATQjFVDyzZF","predecessor_account_id":"system","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FNUFK6hcHr58ZCLfP9k6xaGevMyvxKoGtUcXLRjqZ5MZ","block_height":125319246,"block_timestamp":1723136264769391900},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":0.0,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EAkLGwHpqdJv4CToYw1rG9kmXTBQu3vmnAU7nRc6n8Pd","included_in_block_hash":"5rH5EQ3VQ4ERy81YWWPFZLatquuE37a7XsrVGRizHNy7","block_timestamp":"1723136261730036825","block":{"block_height":125319243},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1.0,"fee":0.0,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.453006715933e20}},{"id":"7269306276","receipt_id":"39asTAgKK7oqns11WLxRWhZ1SFjj9JacoRAt3SeEPB5m","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"z94PEYfCi2fNEVhRXr9WzGJCMNroFdXm1bShA5DWXnk","block_height":125320582,"block_timestamp":1723137768987933000},"receipt_outcome":{"gas_burnt":2810226451349.0,"tokens_burnt":2.810226451349e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FU6yAQsJ5dsepmRdipWPSmibqUL5kJNmkKR5wWfB1BoQ","included_in_block_hash":"5qkaGLrQwW8KboXUo7o8VRE6X8prwJ9oTYnNR3ge6S9N","block_timestamp":"1723137767962103704","block":{"block_height":125320581},"receipt_conversion_tokens_burnt":"30856705701800000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.810226451349e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"20241022000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing with Megha\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"We are awesome\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Magic\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.118793508367e20}},{"id":"7269382791","receipt_id":"3rzNrahP9R5NQPZd9t8JVynyKGmBBhWZ5GuiTukcW3z5","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ANhPcr4t1VK4SfVhk9ceUrTUA9pt2cphtaWvHxB3TTSV","block_height":125320775,"block_timestamp":1723137979679948300},"receipt_outcome":{"gas_burnt":2985286646600.0,"tokens_burnt":2.9852866466e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5oyv1aLCYZB2t7EBKDM9gHLjgYwaX7CmbQL92QjXZNpU","included_in_block_hash":"4YrRX9gJ77xwjVyzPgk7CDdLTcNgG6H9L2Fb1TcXxxtR","block_timestamp":"1723137978583603209","block":{"block_height":125320774},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.9852866466e20,"args":"{\"id\": 17, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.293444527696e20}},{"id":"7269393659","receipt_id":"A2RDxF9oUMvdtgmrSryBcUA25BXod6xKBf3KeETBfiwW","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9V5X2Mokt4Zbqexv9oLGx2XihEWw8EqAjFRF74qbbpja","block_height":125320796,"block_timestamp":1723138002958550300},"receipt_outcome":{"gas_burnt":3673883610796.0,"tokens_burnt":3.6738836107960005e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"92MmhsSZHzbB1A9wGyz8yQUSfGTK7QZTpW47BwRxFFX6","included_in_block_hash":"2NScwDa9HAkSRHHtMdF5VgHKDpowvt9Lc4tYoA8n1k2q","block_timestamp":"1723138001918189795","block":{"block_height":125320795},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.6738836107960005e20,"args":"{\"id\": 17, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.453577354014999e20}},{"id":"7269393982","receipt_id":"4QHiDgVQwqaeqJT6Wh3ZX9aHZWwRerWfEtLLWNP4MMFH","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"AmZtLgnUuhJJbTrWMif7Fvoc4bRuvHG9NcxjXPUwgoMN","block_height":125320797,"block_timestamp":1723138004002312400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"92MmhsSZHzbB1A9wGyz8yQUSfGTK7QZTpW47BwRxFFX6","included_in_block_hash":"2NScwDa9HAkSRHHtMdF5VgHKDpowvt9Lc4tYoA8n1k2q","block_timestamp":"1723138001918189795","block":{"block_height":125320795},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":2.0241022e22,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.453577354014999e20}},{"id":"7269393987","receipt_id":"2sLomM5axQfKFSioXgQFm5fhRp6LUs5f9X1wAhFg4vLA","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"AmZtLgnUuhJJbTrWMif7Fvoc4bRuvHG9NcxjXPUwgoMN","block_height":125320797,"block_timestamp":1723138004002312400},"receipt_outcome":{"gas_burnt":3025170737123.0,"tokens_burnt":3.0251707371229997e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"92MmhsSZHzbB1A9wGyz8yQUSfGTK7QZTpW47BwRxFFX6","included_in_block_hash":"2NScwDa9HAkSRHHtMdF5VgHKDpowvt9Lc4tYoA8n1k2q","block_timestamp":"1723138001918189795","block":{"block_height":125320795},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.0251707371229997e20,"args":"{\"proposal_id\": 17}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.453577354014999e20}},{"id":"7269394481","receipt_id":"3hGJPwXGesUH7RxetNoy7ta6tSo2VajPwHHjZXV5zLft","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"28tYvozPJKiGLivyU6KQuCLe7BK7mtRv9aPppZS1ctn3","block_height":125320799,"block_timestamp":1723138006263769900},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"92MmhsSZHzbB1A9wGyz8yQUSfGTK7QZTpW47BwRxFFX6","included_in_block_hash":"2NScwDa9HAkSRHHtMdF5VgHKDpowvt9Lc4tYoA8n1k2q","block_timestamp":"1723138001918189795","block":{"block_height":125320795},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.453577354014999e20}},{"id":"7269864066","receipt_id":"H8de1ieRCRX45SK2hUYWxD5yLJNuerLKwkZ6tapYtPL9","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5wKddnX71Zog4yeHvmGe7Xafiin2deJrfFTq3ckwvRUd","block_height":125322273,"block_timestamp":1723139613177918500},"receipt_outcome":{"gas_burnt":3762567617683.0,"tokens_burnt":3.762567617683e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"8TaWcDwZKSRF1Nfm2mt3HHuUYohU9ZkCP3RoxZ3Z6Mto","included_in_block_hash":"94V3borfE8XizY2v74wqSg67fzh1MEe9XVYGgw5vg52L","block_timestamp":"1723139612123318792","block":{"block_height":125322272},"receipt_conversion_tokens_burnt":"31456159607200000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":3.762567617683e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"council\", \"permissions\": [\"add_member_to_role:AddProposal\", \"bounty_done:VoteApprove\", \"add_bounty:VoteReject\", \"add_bounty:AddProposal\", \"config:VoteReject\", \"add_bounty:VoteApprove\", \"remove_member_from_role:VoteReject\", \"policy:VoteRemove\", \"transfer:VoteRemove\", \"vote:VoteApprove\", \"upgrade_self:VoteApprove\", \"call:VoteRemove\", \"upgrade_self:AddProposal\", \"upgrade_remote:AddProposal\", \"upgrade_remote:VoteReject\", \"upgrade_remote:VoteApprove\", \"vote:AddProposal\", \"add_member_to_role:VoteReject\", \"bounty_done:VoteReject\", \"call:AddProposal\", \"upgrade_self:VoteRemove\", \"add_bounty:VoteRemove\", \"remove_member_from_role:VoteRemove\", \"config:VoteRemove\", \"call:VoteApprove\", \"add_member_to_role:VoteRemove\", \"policy:AddProposal\", \"add_member_to_role:VoteApprove\", \"policy:VoteApprove\", \"transfer:VoteApprove\", \"config:AddProposal\", \"*:Finalize\", \"remove_member_from_role:VoteApprove\", \"set_vote_token:VoteReject\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"policy:VoteReject\", \"set_vote_token:VoteRemove\", \"remove_member_from_role:AddProposal\", \"transfer:VoteReject\", \"transfer:AddProposal\", \"call:VoteReject\", \"upgrade_remote:VoteRemove\", \"upgrade_self:VoteReject\", \"vote:VoteReject\", \"bounty_done:VoteRemove\", \"vote:VoteRemove\", \"set_vote_token:VoteApprove\", \"config:VoteApprove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": \"Everyone\", \"name\": \"all\", \"permissions\": [\"add_member_to_role:AddProposal\", \"transfer:AddProposal\", \"bounty_done:AddProposal\", \"call:AddProposal\", \"remove_member_from_role:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\"], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.077129213755e20}},{"id":"7269891390","receipt_id":"B83QXLdpYCyi61Vt1fLX2pWdeNgNK6FE3pSF5qZLccDR","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8za2cRnE8UsZnsYpbnr5NENKbkeYh21u1pmqaQ27TWnu","block_height":125322307,"block_timestamp":1723139653134414800},"receipt_outcome":{"gas_burnt":3853239571448.0,"tokens_burnt":3.853239571448e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7ZzikrZFj5zCt92C5D5vK1wnRnSw7aduut5YcCABtyp9","included_in_block_hash":"GpYTfoBgaK86cZW6KjNDW4x87WPwrrj5ZtkEESRdZoV8","block_timestamp":"1723139651902513518","block":{"block_height":125322306},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.853239571448e20,"args":"{\"id\": 18, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.161397452544e20}},{"id":"7269996133","receipt_id":"DENyA6QgeNHcBhngTDqypE92iMYyY9pvQp6w9PWBSM83","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2XmK5dETjfUXhgjdNXV6QsPkcqQQodaWWsK7VfmAsaFS","block_height":125322583,"block_timestamp":1723139955047251500},"receipt_outcome":{"gas_burnt":4610180761265.0,"tokens_burnt":4.6101807612649996e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"F9Hzi5fYcnTdSgftRRbA1TDL1BDaKcUCaSjgy4G9aNQG","included_in_block_hash":"4Ck1ii1t4i6JFe7KWJKZm7Yg5yxHaa37VSdc5ADKzEkr","block_timestamp":"1723139953950753874","block":{"block_height":125322582},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.6101807612649996e20,"args":"{\"id\": 18, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.1415212048609994e20}},{"id":"7269996472","receipt_id":"6vq5pZvTUAhUR1De795KQMLoPnJswdE9gEMjfuihdCey","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GJJRASiUgkz61fQgUg3u5UfJ7fyhhEvYANHCvMJtnYsV","block_height":125322584,"block_timestamp":1723139955956797400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"F9Hzi5fYcnTdSgftRRbA1TDL1BDaKcUCaSjgy4G9aNQG","included_in_block_hash":"4Ck1ii1t4i6JFe7KWJKZm7Yg5yxHaa37VSdc5ADKzEkr","block_timestamp":"1723139953950753874","block":{"block_height":125322582},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.1415212048609994e20}},{"id":"7270472053","receipt_id":"A2y3ATDYHv79BANVSewp1X7GiW3NYD3sDqz9FDJjdYe9","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HQ3e1P4gcFoK32q2JvTaJoNEmyBjdd8jsUGw1orMYQfX","block_height":125323908,"block_timestamp":1723141441186589700},"receipt_outcome":{"gas_burnt":2733930356857.0,"tokens_burnt":2.7339303568569998e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7YcHjTQpmCn6XKX9kVm3hRgpySCvJk5Qzm5RghJsfggp","included_in_block_hash":"DzX3CRwMx3BXtvLLjnKhtETapxsTjzJQ1gKMH5zmddYJ","block_timestamp":"1723141440240865139","block":{"block_height":125323907},"receipt_conversion_tokens_burnt":"30871239272800000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.7339303568569998e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"joespano.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Activities Report 7/22-8/4\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Moderator Contributions Bi-Weekly Report\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":172}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.042642749585e20}},{"id":"7270507695","receipt_id":"FsKZwCyCKc645Mn7PuJRAq2nBRJEE9dJKUQPRKAePKN4","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"CHhdLHbp7ZBzXBshY2jpByhuwSJhN3RTiDhcYTWTPSBw","block_height":125323961,"block_timestamp":1723141500770890500},"receipt_outcome":{"gas_burnt":3576713718208.0,"tokens_burnt":3.576713718208e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"31VHsngGQcYgcETi5pb3DysZqHmss74EXYCENL3VQvdP","included_in_block_hash":"8weXchJoNs3Sk7QJf9tNB6GUMbk8wmLgEnA9Z5dChYHz","block_timestamp":"1723141499672918442","block":{"block_height":125323960},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.576713718208e20,"args":"{\"id\": 19, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.438725963623e20}},{"id":"7270508763","receipt_id":"4URAVwjKg8mRJksQ6PNRx6JQcD4Axvv58HmqKbupGTdx","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"joespano.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DAC9eNakfoJZ5z6s5yEJFtegQnd4Q2wHfaXe6Ube7xTD","block_height":125323962,"block_timestamp":1723141501888536300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"joespano.near","status":true},"transaction_hash":"31VHsngGQcYgcETi5pb3DysZqHmss74EXYCENL3VQvdP","included_in_block_hash":"8weXchJoNs3Sk7QJf9tNB6GUMbk8wmLgEnA9Z5dChYHz","block_timestamp":"1723141499672918442","block":{"block_height":125323960},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e19,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.438725963623e20}},{"id":"7270508769","receipt_id":"xQo5aDiatuKe9BJ5jFxf8BFcTM7mdWRpjTTdFU17cny","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DAC9eNakfoJZ5z6s5yEJFtegQnd4Q2wHfaXe6Ube7xTD","block_height":125323962,"block_timestamp":1723141501888536300},"receipt_outcome":{"gas_burnt":3107489239319.0,"tokens_burnt":3.107489239319e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"31VHsngGQcYgcETi5pb3DysZqHmss74EXYCENL3VQvdP","included_in_block_hash":"8weXchJoNs3Sk7QJf9tNB6GUMbk8wmLgEnA9Z5dChYHz","block_timestamp":"1723141499672918442","block":{"block_height":125323960},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.107489239319e20,"args":"{\"proposal_id\": 19}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.438725963623e20}},{"id":"7270510534","receipt_id":"7jqRq6iEeB2tDi7o61L7Dmf8pGYPDXAPz8Em477aicJH","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FPparX6LhwTHP78g265VsJdm7fTikM5pdU8txSLcvtmA","block_height":125323964,"block_timestamp":1723141504093642200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"31VHsngGQcYgcETi5pb3DysZqHmss74EXYCENL3VQvdP","included_in_block_hash":"8weXchJoNs3Sk7QJf9tNB6GUMbk8wmLgEnA9Z5dChYHz","block_timestamp":"1723141499672918442","block":{"block_height":125323960},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.438725963623e20}},{"id":"7354292532","receipt_id":"Gwumo9sjcPxSKaGSKp6RzPDMPbHczzTJ2Uwb6S9NCnw7","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"F2ahbiKPQSozYi3zo31soJomaGxoHNmZKKDnFuRVCahp","block_height":125603434,"block_timestamp":1723453693606572300},"receipt_outcome":{"gas_burnt":4365651545631.0,"tokens_burnt":4.365651545631e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3KKVsPYsXrpVASwXgiuVqm9dK32WycH3njr11niACmpZ","included_in_block_hash":"7uEhjVaTLJefCkgkj6RLfENV5FTDDBu3o1Sh5SJpPV7N","block_timestamp":"1723453692495923787","block":{"block_height":125603433},"receipt_conversion_tokens_burnt":"31641742129200000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.365651545631e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"config:Finalize\", \"config:AddProposal\", \"policy:AddProposal\", \"add_bounty:AddProposal\", \"bounty_done:AddProposal\", \"transfer:AddProposal\", \"vote:AddProposal\", \"call:AddProposal\", \"upgrade_self:AddProposal\", \"upgrade_remote:AddProposal\", \"set_vote_token:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"remove_member_from_role:*\", \"add_member_to_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteApprove\", \"*:VoteReject\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.6820689669229996e20}},{"id":"7354301144","receipt_id":"5biMCnQWmbQ2xwSX7fzZqcSoQTHqSeU9LBE94NcHTDTe","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4RZpXw1NsX8MazaH38oZ65hwGZXdGJiZqKZsvSSKRrue","block_height":125603466,"block_timestamp":1723453730427688400},"receipt_outcome":{"gas_burnt":4640993716625.0,"tokens_burnt":4.6409937166250004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FqExBUGLLUH6zovdahgtgvawF8wsATFSgsegAhkM98ic","included_in_block_hash":"8H3Ak1fodqcpW7V9VFyhnSxiQzgAxC18cAwE2toWvJpw","block_timestamp":"1723453729190752777","block":{"block_height":125603465},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.6409937166250004e20,"args":"{\"id\": 20, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.1723341602209995e20}},{"id":"7354301496","receipt_id":"G4U3vtzWp76XTs9wx9oFHAtv5U5H7pzCTb1ujeW9G7P3","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HK3thT6BXknyQ1Kd4wKQYDRSFcwEQ1sqXJZQABNMxdJ9","block_height":125603467,"block_timestamp":1723453731629300000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"FqExBUGLLUH6zovdahgtgvawF8wsATFSgsegAhkM98ic","included_in_block_hash":"8H3Ak1fodqcpW7V9VFyhnSxiQzgAxC18cAwE2toWvJpw","block_timestamp":"1723453729190752777","block":{"block_height":125603465},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.1723341602209995e20}},{"id":"7357251450","receipt_id":"5mriUUv2gvCh6eE61cdErAGhR38n22VZKReTSYq8Zx3y","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EARXXkV7YLk4NdW8sJN4CUVRCWhUggATFvTqVwaA7JkM","block_height":125610187,"block_timestamp":1723461430045044000},"receipt_outcome":{"gas_burnt":4451236301449.0,"tokens_burnt":4.451236301449e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HdUShCWCdjtsq5aE54ZR8KJHgH471aZJs4aZoPSXMk2h","included_in_block_hash":"GvJ2r7NpruxwySZmjmKKYzAeYZF9vHsjYj6yG5wqufoS","block_timestamp":"1723461428792593555","block":{"block_height":125610186},"receipt_conversion_tokens_burnt":"31646661184000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.451236301449e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"remove_member_from_role:*\", \"add_member_to_role:*\", \"config:*\", \"policy:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.767702913289e20}},{"id":"7357629128","receipt_id":"ERoxzgMV3TzuzwSjrAcf6tf9Hsgd3WjvwrcXvVmd6BpF","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FFTYQHW9W2fSYcym69do186LqFL9kbGGKebP7rfLU2KM","block_height":125610937,"block_timestamp":1723462273414552600},"receipt_outcome":{"gas_burnt":4830387165833.0,"tokens_burnt":4.830387165833e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CJzaDbSHJXJdiV3Ww2axF4FPNexqtaG6CAuYQ3w3xNs2","included_in_block_hash":"HgpMCZVjBhmhsJ6AqVPY5H8BkX9xghbnkXwnhSgVAuGR","block_timestamp":"1723462272652972656","block":{"block_height":125610936},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.830387165833e20,"args":"{\"id\": 21, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.361727609429e20}},{"id":"7357630306","receipt_id":"2gBDMU9QTcrFNaJv2tdYkpo4GTeSLiBrnBUav2dLkgZ8","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8p9sGqCdjMyXuTgEYmhsgHoSwhGjfKcno8Gxr5M5Aoyf","block_height":125610938,"block_timestamp":1723462274694061800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"CJzaDbSHJXJdiV3Ww2axF4FPNexqtaG6CAuYQ3w3xNs2","included_in_block_hash":"HgpMCZVjBhmhsJ6AqVPY5H8BkX9xghbnkXwnhSgVAuGR","block_timestamp":"1723462272652972656","block":{"block_height":125610936},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.361727609429e20}},{"id":"7357708722","receipt_id":"GwQ4AMKNGPVT1GjNhVbqTm7hmq7vUmdPSBjZS4YUkYAW","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8smybnsUNJNyPdrevJoycH3QhF6JbT233smsfbKNJVn5","block_height":125611071,"block_timestamp":1723462427910415400},"receipt_outcome":{"gas_burnt":4471464265537.0,"tokens_burnt":4.471464265537e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5rj7Mig9Ve5WfYbXc9vqoJhWQHqGZzhG1sDa8doL4TwD","included_in_block_hash":"GuiuFbPScxXsX4JqDmjGCQNipv4heeYewKWTmcVqwUgo","block_timestamp":"1723462426646741133","block":{"block_height":125611070},"receipt_conversion_tokens_burnt":"31656052106800000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.471464265537e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.788024786605e20}},{"id":"7357710434","receipt_id":"LYXRfETwR2GEumCpyPck8RWLduxsGDEJvzxshTHVibs","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"523YS4FmARtWAh9FJKf3Uwpcx1KXRAgG19FYcAhY2fJC","block_height":125611074,"block_timestamp":1723462431888068000},"receipt_outcome":{"gas_burnt":4788059126081.0,"tokens_burnt":4.7880591260810006e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9iWgnCGZpuMpEkTd3YiN2p1hMMBcJ6RUfgT2Jjz46W1k","included_in_block_hash":"5N83PsBUQ3SdgcSGQfsSpyQW3BytxCYWfZFWmyxUQJUk","block_timestamp":"1723462430580040229","block":{"block_height":125611073},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.7880591260810006e20,"args":"{\"id\": 22, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.319399569677e20}},{"id":"7357711135","receipt_id":"DBW7nxaeFn5WeHtTZsCPxNP4pYQxASNEGtTauXwzpdG5","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"J7hTR5SxVnSYb42zpf9DEuATR52dCe78Vv7iib2a46uT","block_height":125611075,"block_timestamp":1723462433204932900},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"9iWgnCGZpuMpEkTd3YiN2p1hMMBcJ6RUfgT2Jjz46W1k","included_in_block_hash":"5N83PsBUQ3SdgcSGQfsSpyQW3BytxCYWfZFWmyxUQJUk","block_timestamp":"1723462430580040229","block":{"block_height":125611073},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.319399569677e20}},{"id":"7357920950","receipt_id":"5qCDChNxoF7yHmvXRM7fcSkj8ppM9ahVKCtQJdCcZw3B","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GLZYHQQ4iAn63W6gFh2DZJk6hY7WXNPBCXP3kYSbM2gS","block_height":125611503,"block_timestamp":1723462907068387000},"receipt_outcome":{"gas_burnt":4529288773804.0,"tokens_burnt":4.5292887738040005e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"4ARZevHD5zKJRgQTD53kioCNj6wKWiu15TAooZ5tm83G","included_in_block_hash":"Cqt9X6e1sfoZ92QdhCnMufeDnNaEi6jPL7s4iDDHXkgg","block_timestamp":"1723462905837466163","block":{"block_height":125611502},"receipt_conversion_tokens_burnt":"31671480051400000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.5292887738040005e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\", \"petersalomonsen.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.8460035743180004e20}},{"id":"7357921406","receipt_id":"2ffVaK521mpN5ML4sAf6anWLXsJDdQMUPd3HsfB7skPs","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ETfjicJQujfXz6RCojEK4hDyvZsw7TStnDAKRHWxq4JN","block_height":125611506,"block_timestamp":1723462910689606100},"receipt_outcome":{"gas_burnt":4918193951159.0,"tokens_burnt":4.918193951159e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7VNJEtF1VBo8HSFH7wtUV7KQkHRw6USdvh6FXhQCshWj","included_in_block_hash":"JDR3bPuVxS5YzD5o7yFdQ3LTTQFPwQapLvAdAnmqXLNj","block_timestamp":"1723462909558564123","block":{"block_height":125611505},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.918193951159e20,"args":"{\"id\": 23, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.4495343947550006e20}},{"id":"7357921621","receipt_id":"3aQzjzm1KdHULYv1gnk3Km8zYuwxxfyp3uk8wNAPWW1m","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"s3W4CTMPQkXNudzR6t1RkNKTeCewcFXrkKFp6R32UMQ","block_height":125611507,"block_timestamp":1723462911504438500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"7VNJEtF1VBo8HSFH7wtUV7KQkHRw6USdvh6FXhQCshWj","included_in_block_hash":"JDR3bPuVxS5YzD5o7yFdQ3LTTQFPwQapLvAdAnmqXLNj","block_timestamp":"1723462909558564123","block":{"block_height":125611505},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.4495343947550006e20}},{"id":"7358062793","receipt_id":"Fn5CFfSRuHCc8FyU5KsgE4ffnDKtUH5w5ipGj4SALPWc","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2BxwUTLATHBVoq8pZCdRBTUrV8vDstDVkazSBj5KJobM","block_height":125611814,"block_timestamp":1723463259327007700},"receipt_outcome":{"gas_burnt":1506090558031.0,"tokens_burnt":1.506090558031e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"45srJ2Y17mJCUaKpweTkeSLPeRtnz2QxR2T2ZduRjZ4M","included_in_block_hash":"vDTP4nd7CnPZTRuNWy8WYd45mqAZ81F9jH7S6Ret1eH","block_timestamp":"1723463258185772531","block":{"block_height":125611813},"receipt_conversion_tokens_burnt":"31656052106800000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":1e23,"fee":1.506090558031e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Remove Member\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":1.822651079099e20}},{"id":"7358083179","receipt_id":"HT1G6zdHNseY2aVtWW9wzKrJJivRA3zx8BsnjdQ8JQb6","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FVt2FgR8k9fXvESA9QCSJkvnDPhBSJ7GN5KzbjGva2sV","block_height":125611844,"block_timestamp":1723463295939436300},"receipt_outcome":{"gas_burnt":4534907479798.0,"tokens_burnt":4.534907479798e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5grAW7D4BLsvTbKd8VkKrzeSwyxn7S2EXNF3a1mZPvJi","included_in_block_hash":"89HUiQQDgTTt5wTVof5XcABc3nbrKk3EsvspThoT5883","block_timestamp":"1723463294951720851","block":{"block_height":125611843},"receipt_conversion_tokens_burnt":"31656052106800000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.534907479798e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Remove Member\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.851468000866e20}},{"id":"7358084489","receipt_id":"J1qq96LrArRDE6Ak1mWV7EuqKYpn8vSFgNcFPRgdUrFF","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DGCVbrpgE7jtrL6bogAXSpTWua1biCNw3eSz5oRupsYF","block_height":125611847,"block_timestamp":1723463299632083200},"receipt_outcome":{"gas_burnt":4816601935703.0,"tokens_burnt":4.8166019357030004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5UzoXXHgybFVXAU7mfyXHbuQDdor4GrqzBuxMXK3LQvN","included_in_block_hash":"HRfs6FSszuWS6WnVjJWYjcQC9KoY9LbyxSmAWJvbS23D","block_timestamp":"1723463298429211146","block":{"block_height":125611846},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.8166019357030004e20,"args":"{\"id\": 24, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.347942379299e20}},{"id":"7358085020","receipt_id":"2x6nwFMXX4J5gtMnE7B8u7pPbnmaRDA1MPaBseLKCk3q","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HCNiXE4dveVxryPaed1WxGgY2KvzNytS6PgfRG2HCg7A","block_height":125611848,"block_timestamp":1723463300769513000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"5UzoXXHgybFVXAU7mfyXHbuQDdor4GrqzBuxMXK3LQvN","included_in_block_hash":"HRfs6FSszuWS6WnVjJWYjcQC9KoY9LbyxSmAWJvbS23D","block_timestamp":"1723463298429211146","block":{"block_height":125611846},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.347942379299e20}},{"id":"7358790930","receipt_id":"AWeigNqjSifkdJvDbYh6Drz7h2PymLiVqGFaZCstsD5H","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HsrJk7oEQD8pmQcadoZM14oUKUGFMJnzrREmCErvJFxU","block_height":125613111,"block_timestamp":1723464883520570600},"receipt_outcome":{"gas_burnt":4505547919306.0,"tokens_burnt":4.5055479193059996e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CErhmhzpoNJaDYfPg9NmQFBukFJMz5KGG6D1yCjP4LKQ","included_in_block_hash":"GdX4LWqAue3DctSVcUDgT6us5T555tFRZn1Bi1SD5ha","block_timestamp":"1723464882244340961","block":{"block_height":125613110},"receipt_conversion_tokens_burnt":"31646661184000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.5055479193059996e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Remove Member\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.8220145311460006e20}},{"id":"7358793102","receipt_id":"A3KXah6NC4qdLiZQCa7gvhqjBDHV4Rv1W2xLCxGa1hcM","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9Tjw6MhY8Bc5zE2n5sajn8aK29hCQwaWL8iUPK6LT7gj","block_height":125613115,"block_timestamp":1723464888731220200},"receipt_outcome":{"gas_burnt":4769495070971.0,"tokens_burnt":4.7694950709709996e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"28x3jo3Lvg2pDdaApYK81ZWR5xaZNYd8tAepmZXuK6WS","included_in_block_hash":"FAToujSY49h43x75nh2jzjkfFtakJbGzmnCFS9Ac4rzB","block_timestamp":"1723464887451234331","block":{"block_height":125613114},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.7694950709709996e20,"args":"{\"id\": 25, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.300835514567e20}},{"id":"7358793805","receipt_id":"52ThMyy5ZSTg7o1P58mhHMssdztTQnvnRYXrqLiJk31U","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7G3YoPFqCQuUveSmgd8e3jvbTxNsKNhUUXoaKEwb1RNT","block_height":125613116,"block_timestamp":1723464890163030300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"28x3jo3Lvg2pDdaApYK81ZWR5xaZNYd8tAepmZXuK6WS","included_in_block_hash":"FAToujSY49h43x75nh2jzjkfFtakJbGzmnCFS9Ac4rzB","block_timestamp":"1723464887451234331","block":{"block_height":125613114},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.300835514567e20}},{"id":"7359241577","receipt_id":"8Pt5f5H28k9bqGw5mWbBn8LcqJX7Ar1ZBuiH4hGDVTCE","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BnNNRmyVGBQ6TEKK6691zr4hBKZ1m56rbXy3wmnsHSPK","block_height":125613963,"block_timestamp":1723465862033361700},"receipt_outcome":{"gas_burnt":4499108177389.0,"tokens_burnt":4.4991081773890005e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CYWSjRrsdvNdpdqmdG7ZzfkLVM8rexrWsEDcqoWiukJe","included_in_block_hash":"5gz8VTF5zjbgsrofmyKVmV1fSBrHo4MNPP6hiMRy9Lv4","block_timestamp":"1723465860795097990","block":{"block_height":125613962},"receipt_conversion_tokens_burnt":"31656052106800000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.4991081773890005e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.815668698457e20}},{"id":"7359243136","receipt_id":"EKY5TWU8DyNVQ7tJMpsSw5CsxSGSwej5USTFhUKZqT1w","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4LTARBGjjNbhEvGmTcDuJYNK48nYADbg6XZg3j3X6CAP","block_height":125613966,"block_timestamp":1723465865335252200},"receipt_outcome":{"gas_burnt":4788059126081.0,"tokens_burnt":4.7880591260810006e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BWXVV6w3CNJsnnsYwmikc53Xy4j3j8CuKYpVQ1Jnuzz","included_in_block_hash":"4VEcyg5bdsZ4Y2fcFcsKzkhnpE3Mnctc6KEDAd1K8irc","block_timestamp":"1723465864442544816","block":{"block_height":125613965},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.7880591260810006e20,"args":"{\"id\": 26, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.319399569677e20}},{"id":"7359244039","receipt_id":"9wxWyn6KTuqM8F1zW1kvFr7JT6GhxDEtyYFTZQdP7ZaY","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6XyyfuzPTetpy18krRApRCn32iqBeveRr2kSeiDseUA","block_height":125613967,"block_timestamp":1723465866451210200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"BWXVV6w3CNJsnnsYwmikc53Xy4j3j8CuKYpVQ1Jnuzz","included_in_block_hash":"4VEcyg5bdsZ4Y2fcFcsKzkhnpE3Mnctc6KEDAd1K8irc","block_timestamp":"1723465864442544816","block":{"block_height":125613965},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.319399569677e20}},{"id":"7359279906","receipt_id":"3P3MdGpsSqhKui6UeUkY1Fwo7i7jQHaCHfVSxvZ6VUkM","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5irB86MG7winxCC9HvE4VsYPtxKcu9DUf8MPacGg3gX5","block_height":125614021,"block_timestamp":1723465930827940400},"receipt_outcome":{"gas_burnt":4487895984720.0,"tokens_burnt":4.48789598472e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FyapYVxecmDujHo7rkWygYVcnSA5iorRy6874Vw5Pn9W","included_in_block_hash":"DGaAQJuA4E6DeVs9bdmE9o65vfrmiU7U7n5HwvkxhSZM","block_timestamp":"1723465929455850487","block":{"block_height":125614020},"receipt_conversion_tokens_burnt":"31661194755000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.48789598472e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.80450793227e20}},{"id":"7359281837","receipt_id":"F65szAhqbguoXxwY6xzbZx3jsAAGuwKXppTagt4ovzYr","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Agd4P5arZ4jUhmJtQacJgPbuSepdtg5pCy2vVYcvpnXK","block_height":125614024,"block_timestamp":1723465934724916000},"receipt_outcome":{"gas_burnt":4839089982599.0,"tokens_burnt":4.839089982599e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"6YMistRfms7myPwTaBc1FvKDEw8njD6qBwJTBdTwbcg4","included_in_block_hash":"2Zm4hJgGwb1hekcRZRqG1XQYKaVN3HxaVBFTt7ehW5zu","block_timestamp":"1723465933495660995","block":{"block_height":125614023},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.839089982599e20,"args":"{\"id\": 27, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.370430426195e20}},{"id":"7359282699","receipt_id":"639E6akgUkTsL239YqhERSiHdzPWQWf8gg1zSYfX9psD","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6Hz5BubhTscVyTT89Reg3T5zc1vV22AYN4RmjwNfJqDd","block_height":125614025,"block_timestamp":1723465935706720800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"6YMistRfms7myPwTaBc1FvKDEw8njD6qBwJTBdTwbcg4","included_in_block_hash":"2Zm4hJgGwb1hekcRZRqG1XQYKaVN3HxaVBFTt7ehW5zu","block_timestamp":"1723465933495660995","block":{"block_height":125614023},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.370430426195e20}},{"id":"7371970113","receipt_id":"87KwqjiZz9of1PhA5qxQk6iCuQGQtWtEs4WyR4tTz4K3","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Fda7B5t65MPsnLeXEHtLGWxgnruicCCocyEqm4Hcoijc","block_height":125638992,"block_timestamp":1723494223668574200},"receipt_outcome":{"gas_burnt":4588811236420.0,"tokens_burnt":4.5888112364199995e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5Zo6coKkUeTr1KGaEau87LpHhMEqzcgcrmRZSi3e4giK","included_in_block_hash":"DeffcAG2JVK83LF91uWAVwVoyEXRrRc5eLwXyhc2T7U4","block_timestamp":"1723494222636085024","block":{"block_height":125638991},"receipt_conversion_tokens_burnt":"31671480051400000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.5888112364199995e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"petersalomonsen.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"theori.near\", \"petersalomonsen.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.9055260369339993e20}},{"id":"7371972459","receipt_id":"HyLqwJMPBcztevWYyhQW8CQGgk2huhu4UPUvhZf2H5Vy","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"CsXK1U9E5UsQwqNyHhWKDHamyzNyAyTxXzk3vecXTZXn","block_height":125638996,"block_timestamp":1723494228176413200},"receipt_outcome":{"gas_burnt":4922838949931.0,"tokens_burnt":4.9228389499309995e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7hYdVYiSJ3X4nMNkBCzZ2zA18uXNtDJeY8c8vFrDLF16","included_in_block_hash":"CWhEMRDjr1ynnsqC6bxsvbFGBnMrhVh77erTgPLXpVeK","block_timestamp":"1723494226910618577","block":{"block_height":125638995},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.9228389499309995e20,"args":"{\"id\": 28, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.454179393527e20}},{"id":"7371973285","receipt_id":"dYtmZh9qyyXpYJqjuLCZTWB1qiSNUiy2ART3RNzxmUf","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6Z34HmRHxqxtrj1CTDa2MU5wY6u1gRMVi8D1ASrkaqEy","block_height":125638997,"block_timestamp":1723494229458127600},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"7hYdVYiSJ3X4nMNkBCzZ2zA18uXNtDJeY8c8vFrDLF16","included_in_block_hash":"CWhEMRDjr1ynnsqC6bxsvbFGBnMrhVh77erTgPLXpVeK","block_timestamp":"1723494226910618577","block":{"block_height":125638995},"receipt_conversion_tokens_burnt":"30815788109600000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.454179393527e20}},{"id":"7372000013","receipt_id":"GMThLMyJuDk9SiPzWTpL4cXJHXaabEnTbEma2XzCn8wB","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6zxP69GLqqQKF4fqGtSzet5EvGhMqfvH4iPGGH2pQejY","block_height":125639039,"block_timestamp":1723494276743037000},"receipt_outcome":{"gas_burnt":3306033972232.0,"tokens_burnt":3.306033972232e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CB3UpUa1EWWWGrTUzxncReNzqLCd3YhVGeyHywxiJD9B","included_in_block_hash":"4p1FKvcqQBNajeKhNxxdB8Ln4q7YD2KskPdzusg61Z79","block_timestamp":"1723494275605956609","block":{"block_height":125639038},"receipt_conversion_tokens_burnt":"30815564516200000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.306033972232e20,"args":"{\"id\": 15, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.837372179894e20}},{"id":"7372001089","receipt_id":"6TMhUt9Ay3By3ZnwRmE4D6b319d2QSy896rYLpVi5nqG","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8ZGNmCPMixfF1vshqz9nE4HTX3aoBivGprPhgBVZEyHJ","block_height":125639040,"block_timestamp":1723494277755235800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"CB3UpUa1EWWWGrTUzxncReNzqLCd3YhVGeyHywxiJD9B","included_in_block_hash":"4p1FKvcqQBNajeKhNxxdB8Ln4q7YD2KskPdzusg61Z79","block_timestamp":"1723494275605956609","block":{"block_height":125639038},"receipt_conversion_tokens_burnt":"30815564516200000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.837372179894e20}},{"id":"7450882524","receipt_id":"CmWwXPA6S3yfBa7oSPcUvBymfBm4EkC6niYTkZutMJx9","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5PrUy6SyCWwhUtPMNjHCLnd5A5MwoWzjyfLci9MPw3My","block_height":125845761,"block_timestamp":1723741238545369000},"receipt_outcome":{"gas_burnt":2872539971232.0,"tokens_burnt":2.872539971232e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"4igiuzRTZpX59uQPQA8XhCCZ2uNgQCwjQRTqKHqnr9XT","included_in_block_hash":"7Sn2MpdPT2T32wyYMy6Wyd2ug5fs7uNVvxxLqVZvU6tV","block_timestamp":"1723741237484372705","block":{"block_height":125845760},"receipt_conversion_tokens_burnt":"33295039923000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.872539971232e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Reza DevRel Contributor Report 5 August - 14 August\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Following an initial alignment with @gagdiez.near, and as the winner of the AI track on EthGlobal Brussels, I am looking forward to contribute to the AI docs as well as AI derived tooling such as the near-py package.\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":181}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.205490370462e20}},{"id":"7450904645","receipt_id":"7J4oGy3csodXweMFBhihcLQUNPqggCXPRSZ4JfAyUdh9","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"G2aD6jrAbk8Ja2W4k48x5WnFjZDS8kw1gkxb4VJ1p523","block_height":125845831,"block_timestamp":1723741331738389500},"receipt_outcome":{"gas_burnt":3298358229292.0,"tokens_burnt":3.298358229292e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AVnYuDup8zSoUgzRFr3MNmfVMAG93zHwRvpcsmwATFuZ","included_in_block_hash":"FbfFq1PobeeNvtG8oS5zFAuqZZnLjaum8GbAV1qzr3G6","block_timestamp":"1723741330344335758","block":{"block_height":125845830},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.298358229292e20,"args":"{\"id\": 29, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.831650691537e20}},{"id":"7450905289","receipt_id":"HhvFZwRNAkeovxbtt2eaixDdLSTBuLNKMnJ38AhS9PU2","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"z5o7gc1CzinAQ9K5Q6gyiJ8b3JwjUxPB1jdTe8vumG8","block_height":125845832,"block_timestamp":1723741333024752400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"AVnYuDup8zSoUgzRFr3MNmfVMAG93zHwRvpcsmwATFuZ","included_in_block_hash":"FbfFq1PobeeNvtG8oS5zFAuqZZnLjaum8GbAV1qzr3G6","block_timestamp":"1723741330344335758","block":{"block_height":125845830},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.831650691537e20}},{"id":"7451092792","receipt_id":"2sfsUTGmGwewn1EgcQSbcVyU6FEcgmBJKCdPw5Yn7AM8","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BSSBB9VFNvuryCP4PnyUJjiHgEDG2VzctQVRF1zrFMXj","block_height":125846240,"block_timestamp":1723741876029591600},"receipt_outcome":{"gas_burnt":2922070816178.0,"tokens_burnt":2.9220708161779997e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"6dQ18HojFTspH5U5T8xfbdNynHfYnunG18FhtbHQgUBf","included_in_block_hash":"BY4bTsPxiD9FpF5Sgwnqrx8xrG4btG2FuU8t6Q5q5rsn","block_timestamp":"1723741874713226714","block":{"block_height":125846239},"receipt_conversion_tokens_burnt":"31773929414500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.9220708161779997e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"914000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Test1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Test2\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"hello\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.239810110323e20}},{"id":"7451107188","receipt_id":"526B4nbpc4LVvFnanfXY1hKjYqvFNy4EEMW2rGsjuDqB","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HXEa5rXo7cktVaHw3sdwJUPgidsouYwMpY2LTHUakrGh","block_height":125846285,"block_timestamp":1723741935765421800},"receipt_outcome":{"gas_burnt":2853812369398.0,"tokens_burnt":2.8538123693980002e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5VkiweCPU3qvBXXgnWDbJKfaWi8AaPBjZh2qjqzAZ1UY","included_in_block_hash":"CcxKTYTXrzoMrdhQ6nwbiyr6ekHUDCZzw7iV7xgsf9hn","block_timestamp":"1723741934446471241","block":{"block_height":125846284},"receipt_conversion_tokens_burnt":"32412891195500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.8538123693980002e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"56000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevRel Contributor Report for 2024-07-29 - 2024-08-11\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Decentralized DevRel Contribution Report by Garik Covering 29 July - 11 August\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":180}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.177941281353e20}},{"id":"7451110907","receipt_id":"7R6nykjkaFsUjPG4hVjG4kZVfYstMxzts4pyrAQhzEYR","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Cyp4CmRmXnNxSDv4VKG9cikhW4WqdDnr7Q7X88R2SLtn","block_height":125846300,"block_timestamp":1723741955666714600},"receipt_outcome":{"gas_burnt":3697603145497.0,"tokens_burnt":3.697603145497e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BAiPuT8FdDqdUdQjWophHtwFgJZqddV5cMV8dfWXUyXd","included_in_block_hash":"CboJsgkN9eKi7GLdXF9XdwNSQdXiZXriu7Pmr9V8brRH","block_timestamp":"1723741954318824665","block":{"block_height":125846299},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.697603145497e20,"args":"{\"id\": 31, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.576545619189e20}},{"id":"7451111317","receipt_id":"CkJDvmcQyXicmxXsRuTxHQjsqVqXHpJ8JFRkzNmcUDBr","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EBj6ghHz27GYL7M4nCLjh8i7uRyPE3FaTu1FHMbPQY7b","block_height":125846301,"block_timestamp":1723741956749633500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"BAiPuT8FdDqdUdQjWophHtwFgJZqddV5cMV8dfWXUyXd","included_in_block_hash":"CboJsgkN9eKi7GLdXF9XdwNSQdXiZXriu7Pmr9V8brRH","block_timestamp":"1723741954318824665","block":{"block_height":125846299},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":5.6e19,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.576545619189e20}},{"id":"7451111318","receipt_id":"EbWo7DxWhhFfVCxxW788oowKbsU18h67JJX27C1ARwnK","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EBj6ghHz27GYL7M4nCLjh8i7uRyPE3FaTu1FHMbPQY7b","block_height":125846301,"block_timestamp":1723741956749633500},"receipt_outcome":{"gas_burnt":3122419765232.0,"tokens_burnt":3.122419765232e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BAiPuT8FdDqdUdQjWophHtwFgJZqddV5cMV8dfWXUyXd","included_in_block_hash":"CboJsgkN9eKi7GLdXF9XdwNSQdXiZXriu7Pmr9V8brRH","block_timestamp":"1723741954318824665","block":{"block_height":125846299},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.122419765232e20,"args":"{\"proposal_id\": 31}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.576545619189e20}},{"id":"7451111951","receipt_id":"GQ3UGnbHokeWH12HHZNc55CuQu6HgXLssTjRxKkBWNXs","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BRDdoVdi5jamMJoYXNvoDwqYgYZCSjBMA5g8gVoHawHy","block_height":125846303,"block_timestamp":1723741959476332300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"BAiPuT8FdDqdUdQjWophHtwFgJZqddV5cMV8dfWXUyXd","included_in_block_hash":"CboJsgkN9eKi7GLdXF9XdwNSQdXiZXriu7Pmr9V8brRH","block_timestamp":"1723741954318824665","block":{"block_height":125846299},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.576545619189e20}},{"id":"7451116377","receipt_id":"FPyRLhGhSwpTsRu2TDHZ1d8Qr1tN4wz5cX1uDjLxdGUo","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2BRZU33fU46XDc1LaNBnKBKw4kCotStWaotmnBY7ty3f","block_height":125846321,"block_timestamp":1723741983848455000},"receipt_outcome":{"gas_burnt":3679413957517.0,"tokens_burnt":3.679413957517e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"24gMMuxBjAL8vaDnqaXA1pTuUwHHENSC4yK4aWzMhuWQ","included_in_block_hash":"5was7V5Zkv5Ggg5t8FWeRsM5vkGmoH2YNkkAv73PmQ6W","block_timestamp":"1723741982523831884","block":{"block_height":125846320},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.679413957517e20,"args":"{\"id\": 30, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.541381631085e20}},{"id":"7451116871","receipt_id":"FatFuNKuDycCgkjw4i1K9w9cVTsfDBWhnbWep984KVQa","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3wiqED4Fsc8N1gHVZMBMC8k2SXayHcNTHfe1j4DAFd2j","block_height":125846322,"block_timestamp":1723741985012734500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"24gMMuxBjAL8vaDnqaXA1pTuUwHHENSC4yK4aWzMhuWQ","included_in_block_hash":"5was7V5Zkv5Ggg5t8FWeRsM5vkGmoH2YNkkAv73PmQ6W","block_timestamp":"1723741982523831884","block":{"block_height":125846320},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":9.14e20,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.541381631085e20}},{"id":"7451116872","receipt_id":"Fi2tvwoEy1iiSW4N7pHtWkMaknyzx83rFd9dsmZ3KRCy","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3wiqED4Fsc8N1gHVZMBMC8k2SXayHcNTHfe1j4DAFd2j","block_height":125846322,"block_timestamp":1723741985012734500},"receipt_outcome":{"gas_burnt":3105444965108.0,"tokens_burnt":3.105444965108e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"24gMMuxBjAL8vaDnqaXA1pTuUwHHENSC4yK4aWzMhuWQ","included_in_block_hash":"5was7V5Zkv5Ggg5t8FWeRsM5vkGmoH2YNkkAv73PmQ6W","block_timestamp":"1723741982523831884","block":{"block_height":125846320},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.105444965108e20,"args":"{\"proposal_id\": 30}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.541381631085e20}},{"id":"7451117351","receipt_id":"3mFvXN3GGzu2bvgtAwYTansaErFFrvNJ9kZoh2hDsRhb","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"81kGdpuLHy5ojTe6XV13g9DiajCwFYD6Gn7p9grC9ZK5","block_height":125846324,"block_timestamp":1723741987677219600},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"24gMMuxBjAL8vaDnqaXA1pTuUwHHENSC4yK4aWzMhuWQ","included_in_block_hash":"5was7V5Zkv5Ggg5t8FWeRsM5vkGmoH2YNkkAv73PmQ6W","block_timestamp":"1723741982523831884","block":{"block_height":125846320},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.541381631085e20}},{"id":"7451141436","receipt_id":"EPszykoBNVfjWW1wkbev1CxGwCjGm6XCVtE21C4vqTrc","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"AJJZfhi8ZN4XyceySJdbKg1i2Czyo8JBNdMmEkUtjdNM","block_height":125846399,"block_timestamp":1723742086855676000},"receipt_outcome":{"gas_burnt":2846502749260.0,"tokens_burnt":2.84650274926e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EMZ1YoU1WTPBujNyNybPZnkuaHiS3gdPhPZYqzrC9vZt","included_in_block_hash":"3dEpeayMT2iRMHHhE7zPDBit9ZAHkLbnXAQaRpeGUAxq","block_timestamp":"1723742085600131905","block":{"block_height":125846398},"receipt_conversion_tokens_burnt":"32698993485500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.84650274926e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"2000000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":175}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.173492684115e20}},{"id":"7451278204","receipt_id":"6iCega2fdy7Vk8y8Uj9TQLsmh24e6HGKjPzdmG8SgM1J","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GFBdW8DvL9Cvete73iomZJGz7gEVhVoz4ddST8L3Dpjk","block_height":125846714,"block_timestamp":1723742502335517200},"receipt_outcome":{"gas_burnt":4518620454174.0,"tokens_burnt":4.5186204541740004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AqLTXynrVnYVzvWBYDVXK9PKD5aGCHY1w6MNGkj1NrNe","included_in_block_hash":"5EAQJm3bgHGUMJQiKpE4x5gVFLJt7HGJcp2YAb4wg4c1","block_timestamp":"1723742500868465207","block":{"block_height":125846713},"receipt_conversion_tokens_burnt":"49331073277500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.5186204541740004e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"petersalomonsen.near\", \"theori.near\", \"megha19.near\", \"freski.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.0119311869490004e20}},{"id":"7451279479","receipt_id":"35A98Qt5y7uejet4jkwVbHLLEHVqt4uh6c8byy2S1Se9","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"78wgRcB3gquuQ3nswQLQRw3NNxkR3pbRRWQhHT1Q6D2u","block_height":125846718,"block_timestamp":1723742507333187600},"receipt_outcome":{"gas_burnt":4866165565943.0,"tokens_burnt":4.866165565943e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9Tp98ZQS61P4QqLmdRcNjtigs124KFeSoXYJDQ2FH9Pu","included_in_block_hash":"2o8yUZhSSFFuRfF9rMb4XjysKk3C5zmUQG6dXZduTF6W","block_timestamp":"1723742506025287512","block":{"block_height":125846717},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.866165565943e20,"args":"{\"id\": 33, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.399505711903e20}},{"id":"7451279933","receipt_id":"63EmPBmQugjPvdYU53UXupFt3x5mbJS4MmgL87uQq3rk","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"AjS99CRudk1qNeqKeoyRhMQEq4SsB8H7jG9SSxaWXzqs","block_height":125846719,"block_timestamp":1723742508674691800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"9Tp98ZQS61P4QqLmdRcNjtigs124KFeSoXYJDQ2FH9Pu","included_in_block_hash":"2o8yUZhSSFFuRfF9rMb4XjysKk3C5zmUQG6dXZduTF6W","block_timestamp":"1723742506025287512","block":{"block_height":125846717},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.399505711903e20}},{"id":"7451708267","receipt_id":"FxPCYAm59qHk7Kf3QvTZ55SRBdkDguaFeVVy6C6E1ob8","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3Av6vNi1Q9EMiMqFVbUSPgzp1Efm6SjaNoA5WhQa6RxU","block_height":125847527,"block_timestamp":1723743576313484300},"receipt_outcome":{"gas_burnt":2865376896043.0,"tokens_burnt":2.8653768960429998e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BWbP2TAuURHAR3PaoeDBUK43XdCut4bkjrDGjood3Dr5","included_in_block_hash":"9iWezGRN9EgfwJ6SZNBP4qRiAWjwxg8oZwNaL2nCT4TW","block_timestamp":"1723743574899795897","block":{"block_height":125847526},"receipt_conversion_tokens_burnt":"32684688371000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.8653768960429998e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"40000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":177}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.1922237797529996e20}},{"id":"7477725744","receipt_id":"GWHzZNgKGPhNb5D5qyzNAGKsUhRbxqHmu9UC1AYUzMtu","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2WpEySkMCyMgmigTJynMJGgUgqqvi8cQMYLcM5kjhV2V","block_height":125908769,"block_timestamp":1723823339220699600},"receipt_outcome":{"gas_burnt":4529424117099.0,"tokens_burnt":4.529424117099e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"Gk88t4RTy4k7VkgPAdXHryAGpnD9bso1oPsjjvR2sXPC","included_in_block_hash":"8nNfkh49VU33KpAZm2uxe1JzxiKZ9krafHBRNgAWPpmL","block_timestamp":"1723823337984851383","block":{"block_height":125908768},"receipt_conversion_tokens_burnt":"49474124422500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.529424117099e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.0241653613240005e20}},{"id":"7477727238","receipt_id":"5MkcYbvHQXq1D1Qe97HiVecik6gBWBcvm9btc1pcSTBT","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FYcXCt8WzsVRLWWDXEBt2zvZuz7TQktNAdrtdxxB4xFf","block_height":125908773,"block_timestamp":1723823344239538700},"receipt_outcome":{"gas_burnt":4961855371025.0,"tokens_burnt":4.961855371025001e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"ApTxqsmWhHufaUvqKmf12zaxkaNwQEAdpYYrB4jyvZTP","included_in_block_hash":"CudNPgHQVz5uDHSMax1paEGEriEV9KBLvufaTnrBoUDa","block_timestamp":"1723823342977836465","block":{"block_height":125908772},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.961855371025001e20,"args":"{\"id\": 35, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.495195516985e20}},{"id":"7477727569","receipt_id":"igU23KEykYs7MsLD8o2gfcdQD6LpKhZReKEQaknRErW","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BBpTGBR3CrMrnK3P2woefrdEiEwswsKq7PoeGqCysqkx","block_height":125908774,"block_timestamp":1723823345945950500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"ApTxqsmWhHufaUvqKmf12zaxkaNwQEAdpYYrB4jyvZTP","included_in_block_hash":"CudNPgHQVz5uDHSMax1paEGEriEV9KBLvufaTnrBoUDa","block_timestamp":"1723823342977836465","block":{"block_height":125908772},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.495195516985e20}},{"id":"7484007783","receipt_id":"2RvSLHZS5FVz6Zu5KhaYhJCuWY4H8CYxD6prTYmVuu1o","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FUxNcY3LrckL3psVURqLMPp5W9WPPkYibBiChs2WZq5m","block_height":125923945,"block_timestamp":1723842544394538200},"receipt_outcome":{"gas_burnt":4627409249104.0,"tokens_burnt":4.627409249104e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3dbB9kmKm7dQQXNyWASMJB2dMUzT95WQgqyLGHxv2Mmd","included_in_block_hash":"HyvnQgenzVx2PJEiqJkrNp7b4YhaP4eADx5hVp9a2ua8","block_timestamp":"1723842543025674620","block":{"block_height":125923944},"receipt_conversion_tokens_burnt":"49793605313000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.627409249104e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"theori.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.125345302234e20}},{"id":"7484008830","receipt_id":"DPmhpZgWVpf7GP5KNs61vZAS9gC2BmfNTfP6dignngkq","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GM6xSkXhRN3zfUpWw2dpzEMjNq3UURnPMc1A5oe1dNrd","block_height":125923949,"block_timestamp":1723842549653374000},"receipt_outcome":{"gas_burnt":4987275351383.0,"tokens_burnt":4.9872753513830004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CFLpApmWwfuBgCgR8UQQXREknj51TyT85sFiPdHcKXw7","included_in_block_hash":"GXLqNfMK4pyofPfgcb9H6XJYH3AqSrFDWCCc54tJkrxq","block_timestamp":"1723842548600295210","block":{"block_height":125923948},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.9872753513830004e20,"args":"{\"id\": 36, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.5206154973429996e20}},{"id":"7484009260","receipt_id":"J3w6o9YK3DBzgFnSeoJwrsq3WyxSdbF4VL2c12r1hi4Q","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"E71QGBVpyTKmwLFF7Kd9kvk3Le818PVvXApWRwrY3sbe","block_height":125923950,"block_timestamp":1723842550960031200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"CFLpApmWwfuBgCgR8UQQXREknj51TyT85sFiPdHcKXw7","included_in_block_hash":"GXLqNfMK4pyofPfgcb9H6XJYH3AqSrFDWCCc54tJkrxq","block_timestamp":"1723842548600295210","block":{"block_height":125923948},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.5206154973429996e20}},{"id":"7484053084","receipt_id":"Dwf29WQDUVtsWAHrFYiyhQsZPnWoyCRZ2pMtbDWEX9ut","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BfW5VhS7Q9TyVP1ym7SrZoFLZCLb4cjvYN453faqSeJb","block_height":125924060,"block_timestamp":1723842696005935000},"receipt_outcome":{"gas_burnt":2958013006700.0,"tokens_burnt":2.9580130067e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"B3vYj9Pa4Kp7F2qgnmCcauBcVddD8MQphxUta5Cfo3te","included_in_block_hash":"E4vRRDPQymDZUvzEdNnfdPmovhWJYywwHR2FQKXZPkg5","block_timestamp":"1723842694990155947","block":{"block_height":125924059},"receipt_conversion_tokens_burnt":"32689456742500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.9580130067e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"100000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":177}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.284907574125e20}},{"id":"7484057123","receipt_id":"7iQcgjWhZUMMVAQVAaJyhiUpFPuQyUMPLC5ju5osiNiX","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5MxozahZSDshnRG8udCxHqQhLbKdGVqNDLdXPoZXehes","block_height":125924074,"block_timestamp":1723842714453990100},"receipt_outcome":{"gas_burnt":3717940738423.0,"tokens_burnt":3.717940738423e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EsZQ2NVTGDdvotRSBxbXvRiLvZipbnBBs1WUV9aRHuya","included_in_block_hash":"G3uyPfBKj962cZrz4hqYmMRsmrtd4Svi4P7GsfFPf6hQ","block_timestamp":"1723842713351613860","block":{"block_height":125924073},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.717940738423e20,"args":"{\"id\": 37, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.646864836729e20}},{"id":"7484057554","receipt_id":"8cGqmiA1dLTrHMkmXv7WwYRL9nWbNZdL6wN7GCESf4cZ","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BMmPdEFBAXCWjivKpX9qzWAZhMiqLRpXxujx6FBrHLaW","block_height":125924075,"block_timestamp":1723842715717829400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"EsZQ2NVTGDdvotRSBxbXvRiLvZipbnBBs1WUV9aRHuya","included_in_block_hash":"G3uyPfBKj962cZrz4hqYmMRsmrtd4Svi4P7GsfFPf6hQ","block_timestamp":"1723842713351613860","block":{"block_height":125924073},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e20,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.646864836729e20}},{"id":"7484057557","receipt_id":"6a2cP6RkofRXEyxK2Nxp64LBQQ1qtnL96eja38zTBqVY","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BMmPdEFBAXCWjivKpX9qzWAZhMiqLRpXxujx6FBrHLaW","block_height":125924075,"block_timestamp":1723842715717829400},"receipt_outcome":{"gas_burnt":3172401389846.0,"tokens_burnt":3.1724013898460004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EsZQ2NVTGDdvotRSBxbXvRiLvZipbnBBs1WUV9aRHuya","included_in_block_hash":"G3uyPfBKj962cZrz4hqYmMRsmrtd4Svi4P7GsfFPf6hQ","block_timestamp":"1723842713351613860","block":{"block_height":125924073},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.1724013898460004e20,"args":"{\"proposal_id\": 37}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.646864836729e20}},{"id":"7484058036","receipt_id":"56aAmtZufaKNLfDvAZAG5ghFEkSakcRQVJy5YS863bp8","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"93oLBxRdHgvXFkc5NrSVU1SFPWp6qRanTzhafnYewczN","block_height":125924077,"block_timestamp":1723842718337757200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"EsZQ2NVTGDdvotRSBxbXvRiLvZipbnBBs1WUV9aRHuya","included_in_block_hash":"G3uyPfBKj962cZrz4hqYmMRsmrtd4Svi4P7GsfFPf6hQ","block_timestamp":"1723842713351613860","block":{"block_height":125924073},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.646864836729e20}},{"id":"7484065677","receipt_id":"7BFqwkNfKfnZYWTdqeFq5G11YHc7tQaRs4T5AG8XmtgA","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DirR1evCev9goxZvJx2G2vDRzy3d4SDXpT4QU62FmCJf","block_height":125924100,"block_timestamp":1723842748736980500},"receipt_outcome":{"gas_burnt":2850579090840.0,"tokens_burnt":2.85057909084e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2M6K9qrbRuZgaZfm7G8rKuZ3AFDQM3pM54rKTcJZyF5Y","included_in_block_hash":"9JzSwNTatCmAefcM3R9HAefX3KhLezpJenfpSWLeP4GE","block_timestamp":"1723842747489799185","block":{"block_height":125924099},"receipt_conversion_tokens_burnt":"31735782442500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.85057909084e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.167936915265e20}},{"id":"7484122348","receipt_id":"69o5cHtyxgYsqHTRpsTqtpXG6PYx3C7j1aiBWoQYiy8W","predecessor_account_id":"treasurytestuserledger.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FVAzzPskvtXxXEw4zYarTjH4StzyS8YGmcCaH7wDrnwh","block_height":125924185,"block_timestamp":1723842860066923000},"receipt_outcome":{"gas_burnt":3325297015234.0,"tokens_burnt":3.3252970152339997e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"DhZG9rcVGxWYKMGGAA9AzEyYzo6UP3R77NzUvE3YAG4s","included_in_block_hash":"6P7nzEZT5hF9J1Rb2rPHCtS8Kc9sjK58HPwTsRd4E3VZ","block_timestamp":"1723842858675552027","block":{"block_height":125924184},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.3252970152339997e20,"args":"{\"id\": 38, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.858589477479e20}},{"id":"7484122895","receipt_id":"GXGEGwuFaSAjctVDRznKRrYzvui5c7TT5ARd6oQUUXP2","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4683Ry2gMjJSPjcbeLJ25MoTSTKMpyeX9Dg8bqAGgkLu","block_height":125924186,"block_timestamp":1723842861289177300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"DhZG9rcVGxWYKMGGAA9AzEyYzo6UP3R77NzUvE3YAG4s","included_in_block_hash":"6P7nzEZT5hF9J1Rb2rPHCtS8Kc9sjK58HPwTsRd4E3VZ","block_timestamp":"1723842858675552027","block":{"block_height":125924184},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.858589477479e20}},{"id":"7484134624","receipt_id":"5jJsgvuHPmaQ1s7u9zXTqi4SuUhs8ZFujCh9QYoDj7iK","predecessor_account_id":"treasurytestuserledger.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GqMVmzcjNb3Gvh9ttnDxBc7ZgZjzFjd2kZd8VaKpk2R9","block_height":125924223,"block_timestamp":1723842907994023000},"receipt_outcome":{"gas_burnt":3693380576539.0,"tokens_burnt":3.6933805765389995e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"ECKb86XPwRZNnisfz4JDMRfHvFxkYwaqTm99UeHJhevb","included_in_block_hash":"UwjLQzwATHpDskZ2AAvGjX4q9wnatGNVxprgKM5NjjR","block_timestamp":"1723842906285937375","block":{"block_height":125924222},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.6933805765389995e20,"args":"{\"id\": 32, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":4.003538159999e20}},{"id":"7484135177","receipt_id":"FgZC664LqPLdFHDrZfDLwTBmPwNY9BR5HkjHURcJSiMT","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6PpcrCT752ghEnJXxWn5DGcu5GfPXj3xmRZ2z5crMjJi","block_height":125924225,"block_timestamp":1723842909939255000},"receipt_outcome":{"gas_burnt":2957750738020.0,"tokens_burnt":2.95775073802e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EcNQDytvfJSekDp9RtyWnS6EjfPFg56UMSaj3wWxrWDh","included_in_block_hash":"A1omkgQdUW1Nefz8DZD2J6rFUh7mJjpvekk4Y27mfyQg","block_timestamp":"1723842908827362698","block":{"block_height":125924224},"receipt_conversion_tokens_burnt":"32684688371000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.95775073802e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"40000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 27 July - 11 August\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":176}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.2845976217299996e20}},{"id":"7484159243","receipt_id":"AfgKGrsvXZ6goyoZ4Ckpz78vUVRZnkAU1bRtRuJMymCC","predecessor_account_id":"treasurytestuserledger.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6geP7Nt3vB9X2Asx6G5NrZLHqBjnUFzDYb8WV5FZJogP","block_height":125924276,"block_timestamp":1723842976825210000},"receipt_outcome":{"gas_burnt":3776312312095.0,"tokens_burnt":3.776312312095e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"Ae1NpeaeQSwSfh94pS7seAYFvf1jMdSWAMAaKmndudK1","included_in_block_hash":"CkCU3X3XoTBt9w4UCsfz1qxbn9vUvXYWQmBRrbcMmRw","block_timestamp":"1723842975636475978","block":{"block_height":125924275},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.776312312095e20,"args":"{\"id\": 32, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":4.086469895555e20}},{"id":"7484169136","receipt_id":"3qBZf6dLp7kMNyph8WyTUfTs4duauA4iayPg4mwddTWM","predecessor_account_id":"treasurytestuserledger.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5Jk9D2mbfTRXBpZ2Spg4vLE5mGSgHcFwbSNrTz6SbjVr","block_height":125924290,"block_timestamp":1723842995239769900},"receipt_outcome":{"gas_burnt":3776312312095.0,"tokens_burnt":3.776312312095e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"Ev4W8K1RcANBq2BQreV8a79z6vhz2jAcuwUMf3KCZiJi","included_in_block_hash":"5Vk4VgSdcshQSjFe2bDuBZYT5mEcxBGtXf2W1vTzHcbQ","block_timestamp":"1723842993909855765","block":{"block_height":125924289},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.776312312095e20,"args":"{\"id\": 32, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":4.086469895555e20}},{"id":"7484181706","receipt_id":"KMwTc44j7Suy1YSX24ByUTLMwTSn6ZJgrjkxZdGJ6np","predecessor_account_id":"treasurytestuserledger.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5FYykJycowoRU5rDszJaNRWTzJRArWm6mSQLHGK6yYAC","block_height":125924307,"block_timestamp":1723843017586150000},"receipt_outcome":{"gas_burnt":3721024488391.0,"tokens_burnt":3.721024488391e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"EoRzQdG3gtkwux9AV6dJpFYYsvv7Vg2mLELvDmmSh2D","included_in_block_hash":"8srWqCsrjg2t9M3hYEy3mcJw3fzbyB7dsbQxNJ5o3q6P","block_timestamp":"1723843016292768740","block":{"block_height":125924306},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.721024488391e20,"args":"{\"id\": 32, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":4.0311820718509995e20}},{"id":"7484208443","receipt_id":"BkGSbAEHFbGeji7XHEURgtt8wLQTJZXFsStCzRMHMzmf","predecessor_account_id":"treasurytestuserledger.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8UqYzynpQU6AX5kwBQhbuzG8ZPjLKcfJY8RwLAEEtoNR","block_height":125924342,"block_timestamp":1723843063705311200},"receipt_outcome":{"gas_burnt":3776673960691.0,"tokens_burnt":3.7766739606909996e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FMkVBoYaaMwYnpTZFWRBWGGmjc6CwXLsHSUM1hcdqr1g","included_in_block_hash":"3rzzj3kL5oDymiMCq4SzgQ4Bjaq5Hebx38TLVRBYajZc","block_timestamp":"1723843062421383630","block":{"block_height":125924341},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.7766739606909996e20,"args":"{\"id\": 34, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.681071125544999e20}},{"id":"7484209169","receipt_id":"B8JJ3X3mTMUWyAcNKii3rJqDbz4s46qwfJCeTciNEV6E","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6UTDxjJPApmYJfeBJcevxKmBJabQykPb65gBXGw6NFVg","block_height":125924343,"block_timestamp":1723843065080355300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"FMkVBoYaaMwYnpTZFWRBWGGmjc6CwXLsHSUM1hcdqr1g","included_in_block_hash":"3rzzj3kL5oDymiMCq4SzgQ4Bjaq5Hebx38TLVRBYajZc","block_timestamp":"1723843062421383630","block":{"block_height":125924341},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":4e19,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.681071125544999e20}},{"id":"7484209173","receipt_id":"2joYJJXJz9qZr9FdUBGafh5eSYVCX3RgxY4a8CLiUack","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6UTDxjJPApmYJfeBJcevxKmBJabQykPb65gBXGw6NFVg","block_height":125924343,"block_timestamp":1723843065080355300},"receipt_outcome":{"gas_burnt":3147874456394.0,"tokens_burnt":3.147874456394e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FMkVBoYaaMwYnpTZFWRBWGGmjc6CwXLsHSUM1hcdqr1g","included_in_block_hash":"3rzzj3kL5oDymiMCq4SzgQ4Bjaq5Hebx38TLVRBYajZc","block_timestamp":"1723843062421383630","block":{"block_height":125924341},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.147874456394e20,"args":"{\"proposal_id\": 34}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.681071125544999e20}},{"id":"7484210109","receipt_id":"CiF2PTxYY2mF5C51XaFXFfXxj3WPK7DTxHkjvuJWKokm","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8jUymerLrTuUprFQZTpzAR1aoqEbRUPA2fStnm2rYTUN","block_height":125924345,"block_timestamp":1723843067704143600},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"FMkVBoYaaMwYnpTZFWRBWGGmjc6CwXLsHSUM1hcdqr1g","included_in_block_hash":"3rzzj3kL5oDymiMCq4SzgQ4Bjaq5Hebx38TLVRBYajZc","block_timestamp":"1723843062421383630","block":{"block_height":125924341},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.681071125544999e20}},{"id":"7484530693","receipt_id":"4bcoKcnDkUtX1ChqV8wDxn7Zc8URD1JKLxTL4ScDoGrR","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7rPxLYi3v2tVmnRmgRSTMYwDYkKXvx3FKj1iqoxNLkqi","block_height":125925117,"block_timestamp":1723844026866560800},"receipt_outcome":{"gas_burnt":2923826764294.0,"tokens_burnt":2.923826764294e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HHgkarS1ChWe1f7xyhJofvMe8Lf4T2AEPshatdRuBSbt","included_in_block_hash":"BGadrgqqpDgKPUQb3NmZQD5iAoZHzE22rDuz2mYCUJA6","block_timestamp":"1723844025577210009","block":{"block_height":125925116},"receipt_conversion_tokens_burnt":"33056621348000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.923826764294e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1124000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Reza DevRel Contributor Report 5 August - 14 August\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Following an initial alignment with @gagdiez.near, and as the winner of the AI track on EthGlobal Brussels, I am looking forward to contribute to the AI docs as well as AI derived tooling such as the near-py package.\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":181}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.254392977774e20}},{"id":"7484971691","receipt_id":"CVqqvSBNMRjAj22UShDBrpmRLvp1DKxiJdvqLH4EAENJ","predecessor_account_id":"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EkzYcxXmoYajbkWCXUPSgCs9kGYqBQoDgVYxiGnsU4Rw","block_height":125926240,"block_timestamp":1723845409600967700},"receipt_outcome":{"gas_burnt":2941731054806.0,"tokens_burnt":2.9417310548060003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"45nGYX7DBVbZ3xo7gR7UaWUNgFp5EqjtfzFgD8GzuWdT","included_in_block_hash":"CF5zvoRKzP3jnApGc7LEftDMuLfNisiVRv5pJ4xiXJBM","block_timestamp":"1723845408345856792","block":{"block_height":125926239},"receipt_conversion_tokens_burnt":"32703761857000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.9417310548060003e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":175}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.268768673376e20}},{"id":"7485133875","receipt_id":"5EKhuGAEWaR2MPyLfBtFh7mSgLEnhLFqxZA6z4cXVSGn","predecessor_account_id":"frol.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GeSnR7Znf4a9YBBweKBXq8XnaqZVCC5xfVy4SX5BB5wt","block_height":125926597,"block_timestamp":1723845848192777200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GAwegUMjyK3ghSsd5c12jjErp9fp6Gq32AT5aLYFL81N","included_in_block_hash":"7mGRcYcXKycqsSMp9zhAocY8wkdt3fbxY3ntPN7dP36S","block_timestamp":"1723845847022719659","block":{"block_height":125926596},"receipt_conversion_tokens_burnt":"22318256250000000000","actions":[{"action":"TRANSFER","method":null,"deposit":4.999999999999999e24,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":4.999999999999999e24},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.46365125e19}},{"id":"7485240935","receipt_id":"Hvg7EY4GtfRC5N3S7oazdAAB2x5VgckoNLzF18FH7fWT","predecessor_account_id":"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6FFrYyxEJG85432LbhBk9eAFaYeoB8aiJAPBdzWMbQSC","block_height":125926856,"block_timestamp":1723846176336628000},"receipt_outcome":{"gas_burnt":2884553030950.0,"tokens_burnt":2.88455303095e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"ANqJYb5qTsVeNVRmqa2iYKV3mHzvpiZ272dQfiUdSg4k","included_in_block_hash":"H1hTp9gKf852cxXcGjbhYaz8eS4M88ehm3bnK7gtvBgi","block_timestamp":"1723846175280631436","block":{"block_height":125926855},"receipt_conversion_tokens_burnt":"32713298600000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.88455303095e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000\", \"token_id\": \"usdt.tether-token.near\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":177}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.21168601695e20}},{"id":"7485629164","receipt_id":"D4ugVazzoaepGKpaMr2psrJNFX2XWn4gnYuzz8HkZsVd","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FSBKWNmwk7DnoxbFF47BdCdJ8iYueoovpFMJ4KgCk255","block_height":125927880,"block_timestamp":1723847433527133000},"receipt_outcome":{"gas_burnt":4639679648688.0,"tokens_burnt":4.639679648688e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"4ZhqN5PvBwy3gEXDGHj2MXkHEqGyzrt32kF3XQLxjL1h","included_in_block_hash":"9Qw2CYiDj7tz8sGNhivZ8AJ1y1PUMwZU3eY8kuAuqFCe","block_timestamp":"1723847432245640362","block":{"block_height":125927879},"receipt_conversion_tokens_burnt":"49860362514000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.639679648688e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"policy:AddProposal\", \"upgrade_remote:AddProposal\", \"vote:AddProposal\", \"add_bounty:AddProposal\", \"config:AddProposal\", \"config:Finalize\", \"call:AddProposal\", \"bounty_done:AddProposal\", \"set_vote_token:AddProposal\", \"transfer:AddProposal\", \"upgrade_self:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"theori.near\", \"test03.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.138283273828e20}},{"id":"7485630276","receipt_id":"H8UnVNtxuEu2Pae9TjqwkxZPcA7Ns3yuHjog43bTGf5Z","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Fmu3JyHK7SbyPRE53HPMHKX7UEBJDdR9WASUNxQsrUjS","block_height":125927884,"block_timestamp":1723847438882262300},"receipt_outcome":{"gas_burnt":5005488586043.0,"tokens_burnt":5.005488586043e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"49yhLXvkKaFPQpKJwwYet2vX3KwHxjTidutuBNTBZFDx","included_in_block_hash":"8nsZEvbXFPoacXQkJ2CG9d9FtHiKqKJtHUMR3CQGn1Qx","block_timestamp":"1723847437528081767","block":{"block_height":125927883},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":5.005488586043e20,"args":"{\"id\": 43, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.538828732003e20}},{"id":"7485630638","receipt_id":"6vuE9hPDnffKYGuuSAr3DHwjN3i1azQj3njRj1kBH4x3","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7sFv9aP2QhJgFwY5D59YrmQM9J2nxk9ehRTh3SeDJzne","block_height":125927885,"block_timestamp":1723847440155520800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"49yhLXvkKaFPQpKJwwYet2vX3KwHxjTidutuBNTBZFDx","included_in_block_hash":"8nsZEvbXFPoacXQkJ2CG9d9FtHiKqKJtHUMR3CQGn1Qx","block_timestamp":"1723847437528081767","block":{"block_height":125927883},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.538828732003e20}},{"id":"7510568292","receipt_id":"C5fv8gbChSuq1dHCS5sXgb4xt19zrwu5hiYJ1x9u7ZjA","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EejDVGZSG3CwDoQ22hHyK1JKyKhiNv7b4M3cUMYZY1EC","block_height":125990849,"block_timestamp":1723926376218184000},"receipt_outcome":{"gas_burnt":2886352347647.0,"tokens_burnt":2.886352347647e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3jYTLZ2R9gSUfv8mZMFfPYmfhdfTxhPyKiJfgUCwA6LG","included_in_block_hash":"44piMKN7vpYCfndfN2pZtu6DsYrm5tgvL4QMRT4joex7","block_timestamp":"1723926374889104786","block":{"block_height":125990848},"receipt_conversion_tokens_burnt":"31816844758000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.886352347647e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"100000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"petersalomonsen.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.204520795227e20}},{"id":"7510589815","receipt_id":"wgCCFo5gFLv8JetUZPcEZ3ZA59dqmriZjHAgNnRbn8f","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"CtfQYevaQtA53JZKFRxAxfza77LUCStcryYh6ggskS5T","block_height":125990926,"block_timestamp":1723926473814488000},"receipt_outcome":{"gas_burnt":3703670259004.0,"tokens_burnt":3.703670259004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"6P3E177xPGDsSwjXvXNQLsaTdqrHAVdBDYu3RpVELbQW","included_in_block_hash":"5d4Z14yFerBmcsu7T9rd116Qe9rxBW9hsKRkVfdkgPHY","block_timestamp":"1723926472668753147","block":{"block_height":125990925},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.703670259004e20,"args":"{\"id\": 44, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.590621854671e20}},{"id":"7510590374","receipt_id":"5oa48VZt8gdNL4wsxXoHRQbnP51uVpGLbM3Qbt2Rta52","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"petersalomonsen.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6dPCJLKqKRCGSFQVcP3qtvnEXneAY4o46pWPpeDHSvsx","block_height":125990927,"block_timestamp":1723926475192918800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"petersalomonsen.near","status":true},"transaction_hash":"6P3E177xPGDsSwjXvXNQLsaTdqrHAVdBDYu3RpVELbQW","included_in_block_hash":"5d4Z14yFerBmcsu7T9rd116Qe9rxBW9hsKRkVfdkgPHY","block_timestamp":"1723926472668753147","block":{"block_height":125990925},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.590621854671e20}},{"id":"7510590377","receipt_id":"ETTMn8HVPg26hF3bVzFxRKAnvFe1bKZszjSYz5HnqdYo","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6dPCJLKqKRCGSFQVcP3qtvnEXneAY4o46pWPpeDHSvsx","block_height":125990927,"block_timestamp":1723926475192918800},"receipt_outcome":{"gas_burnt":3130428887207.0,"tokens_burnt":3.130428887207e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"6P3E177xPGDsSwjXvXNQLsaTdqrHAVdBDYu3RpVELbQW","included_in_block_hash":"5d4Z14yFerBmcsu7T9rd116Qe9rxBW9hsKRkVfdkgPHY","block_timestamp":"1723926472668753147","block":{"block_height":125990925},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.130428887207e20,"args":"{\"proposal_id\": 44}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.590621854671e20}},{"id":"7510590958","receipt_id":"8B5dV8W2rAP7Mfg4jMWuXkCdL84ZFoRKDfgT8X2gqn3Z","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"petersalomonsen.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"46qPkZ4tx8WhrNtRDdJaZd79jLZv5wBMniqDp7hZqeVx","block_height":125990929,"block_timestamp":1723926477285038800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"petersalomonsen.near","status":true},"transaction_hash":"6P3E177xPGDsSwjXvXNQLsaTdqrHAVdBDYu3RpVELbQW","included_in_block_hash":"5d4Z14yFerBmcsu7T9rd116Qe9rxBW9hsKRkVfdkgPHY","block_timestamp":"1723926472668753147","block":{"block_height":125990925},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.590621854671e20}},{"id":"7574759307","receipt_id":"3FG7YJg5H3X4Y64UDcyct8Kx6xqfp75LX69KciGR1Jnp","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6n9VLiGSdT15nXQZNKAyZp4torRabmWg2uddGfCA4FhH","block_height":126162049,"block_timestamp":1724141015882304500},"receipt_outcome":{"gas_burnt":4479576383719.0,"tokens_burnt":4.479576383719e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"DsYcxqxRFUn7uQ3S6vyPgq1obbVYh7cocYwGZ51w1xdU","included_in_block_hash":"AzGhSG23pntTq3ytNUarqNLyAQCVruh4WVCRBYFMZSq6","block_timestamp":"1724141014751054659","block":{"block_height":126162048},"receipt_conversion_tokens_burnt":"48391704092000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.479576383719e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"config:Finalize\", \"transfer:AddProposal\", \"call:AddProposal\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.963493424638999e20}},{"id":"7574886009","receipt_id":"EUn9WQXX4kgHfbV2sxekGYyC6vpHoziN9BHqCw6Ucr9q","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"auCT2ZVeMJxC4nMbg5Ze6rKy9VR4fREUcPGxn5p5sZk","block_height":126162263,"block_timestamp":1724141294995475000},"receipt_outcome":{"gas_burnt":4786680982805.0,"tokens_burnt":4.7866809828050004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FgygWGF28redA8UeHaYS5Khmsqmy4txSN4LwNhjNB7Nc","included_in_block_hash":"4aw3pQeGXeru9q3g9SuMHCj6tedZZnodEAaLZHMjZiP6","block_timestamp":"1724141293729809229","block":{"block_height":126162262},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.7866809828050004e20,"args":"{\"id\": 45, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.3200211287649996e20}},{"id":"7574886916","receipt_id":"7xTAgjtAGWRa9uiX5StN9Ui2UpgvZuf2Na8Kk7xGyh1q","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3jkrDXvdj4BsqaeCpAn7mNwCW1Lhrw5maGDp1GvsLgKE","block_height":126162264,"block_timestamp":1724141296370884900},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"FgygWGF28redA8UeHaYS5Khmsqmy4txSN4LwNhjNB7Nc","included_in_block_hash":"4aw3pQeGXeru9q3g9SuMHCj6tedZZnodEAaLZHMjZiP6","block_timestamp":"1724141293729809229","block":{"block_height":126162262},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.3200211287649996e20}},{"id":"7575123408","receipt_id":"2wmh2VN4ow53iY11c8JqYXN23JhyAgBTVP2PyGtyhVZG","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4Bs47p9ZFN54QUcDQoBrBUvuor9JAV3FH1xs5hRLbYpp","block_height":126162833,"block_timestamp":1724142008817085000},"receipt_outcome":{"gas_burnt":4542982132730.0,"tokens_burnt":4.54298213273e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"DqdYV6cBH5PxD7yv7E3mvK7G21VujCLENM6fLtNV8rsz","included_in_block_hash":"Fbd8EpvMJWDfDRvHWxENW2y3bZuGjkXFQPuaXXEEdGFG","block_timestamp":"1724142007538683822","block":{"block_height":126162832},"receipt_conversion_tokens_burnt":"48711184982500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.54298213273e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.030093982555e20}},{"id":"7575124464","receipt_id":"3CVrR7wHL3Jdz8x2tgpqo1AigVsoacWfgcBPQQxABqQJ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ZXjnDbMXSrXNhwDTSjby8Z4Z8zVncV7G4SSiMVBPTrz","block_height":126162836,"block_timestamp":1724142012876321500},"receipt_outcome":{"gas_burnt":4842850557935.0,"tokens_burnt":4.842850557934999e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"8Qa4QRvmFNxkhe32HVKqja2LS5gQFfVrov7k7pwDCMF7","included_in_block_hash":"85bUZv6obHpx2BuX7SqLXSyZvs7Dsd1fqs56gNEVTLsH","block_timestamp":"1724142011457607270","block":{"block_height":126162835},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.842850557934999e20,"args":"{\"id\": 46, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.376190703895e20}},{"id":"7575125061","receipt_id":"DiqFMTWkP2Ce1Me91Esi53shy4ZJbUX5DujxPsuWofD","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Cgm6X6DncRRxCmfCtFU3V2owhUgf7yQq4xDwZ7yJV6kZ","block_height":126162837,"block_timestamp":1724142014389553400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"8Qa4QRvmFNxkhe32HVKqja2LS5gQFfVrov7k7pwDCMF7","included_in_block_hash":"85bUZv6obHpx2BuX7SqLXSyZvs7Dsd1fqs56gNEVTLsH","block_timestamp":"1724142011457607270","block":{"block_height":126162835},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.376190703895e20}},{"id":"7575134836","receipt_id":"6YXk2koJaqEW6x9CkJmtnbEcT9K4zeCYhPMSm5qrCLrf","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5o3XhEk2F72maWyycE18wVWFzv4zf1JBSvpXNhMFtWgh","block_height":126162869,"block_timestamp":1724142054563697400},"receipt_outcome":{"gas_burnt":4500943320914.0,"tokens_burnt":4.500943320914e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EXG8AGF4wt1rAAP51E9E8wJrAtvdSY4QFWtP5bTnerCq","included_in_block_hash":"HUvjZNRSeqQXmcuKsKGwpjdZxhwcCSCHPwbP8X1NV8wX","block_timestamp":"1724142053490009580","block":{"block_height":126162868},"receipt_conversion_tokens_burnt":"48854236127500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.500943320914e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"theori.near\", \"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.989485682189e20}},{"id":"7575135793","receipt_id":"nPCB6dCpwZDzxPYTH5eJR6GLNoBxRtgRPjN5x6Lrir2","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4JVM9yPoS4V8NFGwFFmUnzAN7dK2jJvCzKquEbEcJDVb","block_height":126162873,"block_timestamp":1724142059503666200},"receipt_outcome":{"gas_burnt":4782373855031.0,"tokens_burnt":4.782373855031e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3zMK4nssCHbU4NeuStQycujXuhAWRc3zWpEwE2yaWn9q","included_in_block_hash":"Eifa6ypLtu2DcurVjAP2j7mrCvbD48SsujEz5DoLAcFw","block_timestamp":"1724142058195885744","block":{"block_height":126162872},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.782373855031e20,"args":"{\"id\": 47, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.315714000991e20}},{"id":"7575136362","receipt_id":"2tnV3DXHQ6xqcZ1P55cTerEKATh6nipGjtkMFiE4tWKz","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"G6rfJw8MeF5DX2BQYsYpnPUC22yV5UGZQBxiRMNmgNNj","block_height":126162874,"block_timestamp":1724142060794938600},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"3zMK4nssCHbU4NeuStQycujXuhAWRc3zWpEwE2yaWn9q","included_in_block_hash":"Eifa6ypLtu2DcurVjAP2j7mrCvbD48SsujEz5DoLAcFw","block_timestamp":"1724142058195885744","block":{"block_height":126162872},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.315714000991e20}},{"id":"7575245561","receipt_id":"F9AE2ZtGgDz8CKqEtNJUNWKUxVa5PbNQT3wV96fmnJSF","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"AvSAEp4ASnZPE3985XBrESs6n9ESJS56dzKew3T5otj6","block_height":126163109,"block_timestamp":1724142354199186200},"receipt_outcome":{"gas_burnt":2835484820665.0,"tokens_burnt":2.835484820665e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"64TT27cmT3eE7N4uPadiAjZDL5M2gyXZpg7k2yZF4roB","included_in_block_hash":"5un38DjC4Fvgm8CDd6YaT6TvwCFtwiL7Yas1mpYFE1Xn","block_timestamp":"1724142353167500736","block":{"block_height":126163108},"receipt_conversion_tokens_burnt":"32927875317500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.835484820665e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"icespice.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":175}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.16476357384e20}},{"id":"7585429420","receipt_id":"EC1n7FrzxBodyo9uaFcXBqZJsB3joXin5yLG6PewJ3os","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HcvcTGDtcQhJ1Ya1BVvdCtH6gw8YcLrpHvs7iCFRDyWZ","block_height":126184653,"block_timestamp":1724169228353562600},"receipt_outcome":{"gas_burnt":2873183702577.0,"tokens_burnt":2.873183702577e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"Fi1VfcYMTesQuaGcrRjn9iVuvPU19CoBxNXAE34oLggq","included_in_block_hash":"ETc8B2T13qwZuw4ksAKkepY9B9P2D8hMFBDCmcY25TNn","block_timestamp":"1724169227076816473","block":{"block_height":126184652},"receipt_conversion_tokens_burnt":"32136325648500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.873183702577e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing USDC transfer\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing USDC transfer\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.194546959062e20}},{"id":"7585450898","receipt_id":"GcJxwTXbRfA2MHmjbw5AZUxzRsNDwmNudXzUEp7SSWch","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2WGCPL2SRvhht9W3KAwRuH2f2gZvx9TgS1NtZNaFujC4","block_height":126184688,"block_timestamp":1724169270509387500},"receipt_outcome":{"gas_burnt":3895539154040.0,"tokens_burnt":3.89553915404e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"kx9XeFtRLf7GDHc9J5bU95248RiSdNJeAw27vnhb8Hv","included_in_block_hash":"CnCGC5Yk1ZjsjNMEK1ydQ5w7fweQnyc6fyY8v3JuPqtL","block_timestamp":"1724169269493670895","block":{"block_height":126184687},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.89553915404e20,"args":"{\"id\": 49, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0337937847729e21}},{"id":"7585451717","receipt_id":"9up6iunGoc2Tagibvkw4mJBcaRJmx8GVSgkHxrQkxBDf","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","receipt_kind":"ACTION","receipt_block":{"block_hash":"1hiExH1V9FJDY8Ef2Quj5Hj93UE3XsxZegYZmGKGqQ8","block_height":126184689,"block_timestamp":1724169271809375000},"receipt_outcome":{"gas_burnt":2759153254136.0,"tokens_burnt":2.759153254136e20,"executor_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","status":true},"transaction_hash":"kx9XeFtRLf7GDHc9J5bU95248RiSdNJeAw27vnhb8Hv","included_in_block_hash":"CnCGC5Yk1ZjsjNMEK1ydQ5w7fweQnyc6fyY8v3JuPqtL","block_timestamp":"1724169269493670895","block":{"block_height":126184687},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer","deposit":1.0,"fee":2.759153254136e20,"args":"{\"memo\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing USDC transfer\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing USDC transfer\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null}\", \"amount\": \"10000\", \"receiver_id\": \"megha19.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0337937847729e21}},{"id":"7585451722","receipt_id":"CVAyHTGzXnkh7Aj5qZksJj3abdCVJxRDiZYPv8WuQygj","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"1hiExH1V9FJDY8Ef2Quj5Hj93UE3XsxZegYZmGKGqQ8","block_height":126184689,"block_timestamp":1724169271809375000},"receipt_outcome":{"gas_burnt":3149905293593.0,"tokens_burnt":3.149905293593e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"kx9XeFtRLf7GDHc9J5bU95248RiSdNJeAw27vnhb8Hv","included_in_block_hash":"CnCGC5Yk1ZjsjNMEK1ydQ5w7fweQnyc6fyY8v3JuPqtL","block_timestamp":"1724169269493670895","block":{"block_height":126184687},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.149905293593e20,"args":"{\"proposal_id\": 49}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0337937847729e21}},{"id":"7585453075","receipt_id":"9dqSoLuhwd6Hgf2cYiAEDyLt2XiVDSxeVe6XxyZDEHBn","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ngR5s9ohJu84WQJt2Gt7QdscnphUyxq2Mevdj2JSfRa","block_height":126184691,"block_timestamp":1724169274213154800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"kx9XeFtRLf7GDHc9J5bU95248RiSdNJeAw27vnhb8Hv","included_in_block_hash":"CnCGC5Yk1ZjsjNMEK1ydQ5w7fweQnyc6fyY8v3JuPqtL","block_timestamp":"1724169269493670895","block":{"block_height":126184687},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0337937847729e21}},{"id":"7587039180","receipt_id":"8x1K1tpgdkTCrcMrowWsBFyVzBVGpyg9LDqWtStYFFaA","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"75cWETcp8sHHdgwLsZ8qkFAcH2cB1hnETgLqmeLhyXrB","block_height":126188234,"block_timestamp":1724173717179399000},"receipt_outcome":{"gas_burnt":4566614243149.0,"tokens_burnt":4.566614243149e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"QCd4EHfwZcUF7zdiragehR6AsTYVFmxKtHxj7Nc5Gb7","included_in_block_hash":"GbjC6oYsQ5LtRBuHSQw9mCq9KBsjKoxi4ekBuCeLcmmQ","block_timestamp":"1724173716026316103","block":{"block_height":126188233},"receipt_conversion_tokens_burnt":"48920993328500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.566614243149e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"theori.near\", \"test05.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.055824176434e20}},{"id":"7587042204","receipt_id":"BJDKBwU4v9g7AugRChF16YbfRueo9QWvC1eWPCbuE1Bj","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5uLqJeLr32xJEAU3jdx88dxYwSf6z3ubbiPqVCfnaYgP","block_height":126188238,"block_timestamp":1724173721507139000},"receipt_outcome":{"gas_burnt":4877065363985.0,"tokens_burnt":4.877065363985001e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2bPTDShAe9ipyDkzyYqyUeMN1HJCsgA8qwWsra6Jm1wv","included_in_block_hash":"AvY87wBzKERRWm3AuC3xRqUpEbsR2qdZkr77v8zCiyxr","block_timestamp":"1724173720441232536","block":{"block_height":126188237},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.877065363985001e20,"args":"{\"id\": 50, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.410405509945e20}},{"id":"7587042988","receipt_id":"6HfD2nGoqng3Gm5KPMvF5HKX8h5B6aimyUpSqcx9gEaN","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"F88zGCfy7YsHFwYD4YHR44SGbAief2QfPgtw2SvphVEF","block_height":126188239,"block_timestamp":1724173722748210200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"2bPTDShAe9ipyDkzyYqyUeMN1HJCsgA8qwWsra6Jm1wv","included_in_block_hash":"AvY87wBzKERRWm3AuC3xRqUpEbsR2qdZkr77v8zCiyxr","block_timestamp":"1724173720441232536","block":{"block_height":126188237},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.410405509945e20}},{"id":"7615850692","receipt_id":"5B3psqGR6LE5xSn1EQo3dKwjW5DQVXaJxv5NFLjj2KnM","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"56Ys6zFV35XdZJHXEWo94TAim8mUv8Lk1cN5TriFHJq","block_height":126255041,"block_timestamp":1724255553223000600},"receipt_outcome":{"gas_burnt":3846945248641.0,"tokens_burnt":3.846945248641e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"12kuv7USKNYKWQQ4F7iWzENsmzNBzcRUSka1GsnS1VUS","included_in_block_hash":"7UGnzwMowkx4uDJ7zSxNkmXjZp8Rs1SCEMr6cepxQB8K","block_timestamp":"1724255552048839803","block":{"block_height":126255040},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.846945248641e20,"args":"{\"id\": 42, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.618196685917e20}},{"id":"7615851058","receipt_id":"34LcYfmL7TiGUR5Y9wqYpcDuxKW61KngjZPksDgw4MC1","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"usdt.tether-token.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7k9ZNmcdkQgThqRqgWLZ4KUnTM9CTKiXxB5NnCt4nFAi","block_height":126255042,"block_timestamp":1724255554344000500},"receipt_outcome":{"gas_burnt":1976645767973.0,"tokens_burnt":1.976645767973e20,"executor_account_id":"usdt.tether-token.near","status":false},"transaction_hash":"12kuv7USKNYKWQQ4F7iWzENsmzNBzcRUSka1GsnS1VUS","included_in_block_hash":"7UGnzwMowkx4uDJ7zSxNkmXjZp8Rs1SCEMr6cepxQB8K","block_timestamp":"1724255552048839803","block":{"block_height":126255040},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer","deposit":1.0,"fee":1.976645767973e20,"args":"{\"memo\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":177}\", \"amount\": \"1000\", \"receiver_id\": \"theori.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.618196685917e20}},{"id":"7615851061","receipt_id":"GDGZYi4h1gY9t1RjmdaGAR3u98gejnjnN6N5m6MHyiek","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7k9ZNmcdkQgThqRqgWLZ4KUnTM9CTKiXxB5NnCt4nFAi","block_height":126255042,"block_timestamp":1724255554344000500},"receipt_outcome":{"gas_burnt":2484448085843.0,"tokens_burnt":2.4844480858429997e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"12kuv7USKNYKWQQ4F7iWzENsmzNBzcRUSka1GsnS1VUS","included_in_block_hash":"7UGnzwMowkx4uDJ7zSxNkmXjZp8Rs1SCEMr6cepxQB8K","block_timestamp":"1724255552048839803","block":{"block_height":126255040},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":2.4844480858429997e20,"args":"{\"proposal_id\": 42}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.618196685917e20}},{"id":"7615851153","receipt_id":"7Sf7pJSSzE1fHdrNYNRB1WPXSqrTfWokxXQNqENXQ9ex","predecessor_account_id":"system","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ANF1HqPeCUwkF58K7mF63HkwNXAGWT3piGRDivReqcSi","block_height":126255043,"block_timestamp":1724255555384638700},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":0.0,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"12kuv7USKNYKWQQ4F7iWzENsmzNBzcRUSka1GsnS1VUS","included_in_block_hash":"7UGnzwMowkx4uDJ7zSxNkmXjZp8Rs1SCEMr6cepxQB8K","block_timestamp":"1724255552048839803","block":{"block_height":126255040},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1.0,"fee":0.0,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.618196685917e20}},{"id":"7615984198","receipt_id":"H4v91KKCD72N74gFFwQYL9WEhpaBqNfQWoP4DiWayFuN","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6Q7bTDrtGnedZUQuC27GQUwsw4bT33xSxrh5r6Nz3rps","block_height":126255400,"block_timestamp":1724255979425790500},"receipt_outcome":{"gas_burnt":7246126380660.0,"tokens_burnt":7.24612638066e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3U2Rrw5Vms8Sv7C6sRexu5Fqb2Y68KWfE5ByJMpKfvbd","included_in_block_hash":"25tjpUnA61SPCGfXczpCNFqF4NysMXcZR1h8yte3sSxL","block_timestamp":"1724255978069974254","block":{"block_height":126255399},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":7.24612638066e20,"args":"{\"id\": 41, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.1731183967905e21}},{"id":"7615984739","receipt_id":"4RLoSf19tdqmVnmQjcPRmNekdbTeXA9kncqJkVT9h4ce","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1","receipt_kind":"ACTION","receipt_block":{"block_hash":"5N8E5zBfUNnY76jt9j8j22zmEPWa9du9TmXKSS5SgDzE","block_height":126255401,"block_timestamp":1724255980516023800},"receipt_outcome":{"gas_burnt":4174947687500.0,"tokens_burnt":4.1749476875e20,"executor_account_id":"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1","status":true},"transaction_hash":"3U2Rrw5Vms8Sv7C6sRexu5Fqb2Y68KWfE5ByJMpKfvbd","included_in_block_hash":"25tjpUnA61SPCGfXczpCNFqF4NysMXcZR1h8yte3sSxL","block_timestamp":"1724255978069974254","block":{"block_height":126255399},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":4.1749476875e20,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.1731183967905e21}},{"id":"7617485437","receipt_id":"DdtPFaieXd9jKKKZq1sRtQZ9ozTGujaEFkyaHXHETtC4","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3HD9VSEjjvwZBEqSKUzxeqWLMMPyVSi5yF9wvSR46u8i","block_height":126260371,"block_timestamp":1724262010260644600},"receipt_outcome":{"gas_burnt":3883400527357.0,"tokens_burnt":3.8834005273570004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AZs8VyCMiDyoykW3yxhhkMFhgz9sk8jsHeaQXkTanEcT","included_in_block_hash":"4aVxHJTotKuWnahPUBh2siwZMZ5gdqEDeLG3PQ94Fteg","block_timestamp":"1724262008978672170","block":{"block_height":126260370},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.8834005273570004e20,"args":"{\"id\": 48, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0374185050345e21}},{"id":"7617485838","receipt_id":"9WBqhfhj6xYwo1bwTBCVsHznpWQPQrgryMLAFPQftC7G","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","receipt_kind":"ACTION","receipt_block":{"block_hash":"5qbqqLi1xabH4PXbA8upz9ERwLnnEJzBbfPmBBJN9Q9J","block_height":126260372,"block_timestamp":1724262011671597600},"receipt_outcome":{"gas_burnt":2825616744504.0,"tokens_burnt":2.825616744504e20,"executor_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","status":true},"transaction_hash":"AZs8VyCMiDyoykW3yxhhkMFhgz9sk8jsHeaQXkTanEcT","included_in_block_hash":"4aVxHJTotKuWnahPUBh2siwZMZ5gdqEDeLG3PQ94Fteg","block_timestamp":"1724262008978672170","block":{"block_height":126260370},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer","deposit":1.0,"fee":2.825616744504e20,"args":"{\"memo\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":175}\", \"amount\": \"1000000\", \"receiver_id\": \"icespice.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0374185050345e21}},{"id":"7617485839","receipt_id":"DberKufnDuL7ZwWtvYvVYkjrGvjzJyBT7qaJ7c8QyTGJ","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5qbqqLi1xabH4PXbA8upz9ERwLnnEJzBbfPmBBJN9Q9J","block_height":126260372,"block_timestamp":1724262011671597600},"receipt_outcome":{"gas_burnt":3131827632524.0,"tokens_burnt":3.131827632524e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AZs8VyCMiDyoykW3yxhhkMFhgz9sk8jsHeaQXkTanEcT","included_in_block_hash":"4aVxHJTotKuWnahPUBh2siwZMZ5gdqEDeLG3PQ94Fteg","block_timestamp":"1724262008978672170","block":{"block_height":126260370},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.131827632524e20,"args":"{\"proposal_id\": 48}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0374185050345e21}},{"id":"7617486413","receipt_id":"Dqvc1fdJpq1t2wjjti4bXbbxLaYcrZ8knXVHqwotK42c","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"AeLy2uaZH82xVs5rULyGyPsRqR1RWpE32Sxtaaa9kfZ","block_height":126260374,"block_timestamp":1724262014309452300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"AZs8VyCMiDyoykW3yxhhkMFhgz9sk8jsHeaQXkTanEcT","included_in_block_hash":"4aVxHJTotKuWnahPUBh2siwZMZ5gdqEDeLG3PQ94Fteg","block_timestamp":"1724262008978672170","block":{"block_height":126260370},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0374185050345e21}},{"id":"7617602874","receipt_id":"2RzNMTbJcNpMPtoMb9yz3hDx3FggagLaT9aFqHk3pnVm","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"95Q568aw1ViAYESXDcniaYYqwk1NnUVX1MMWooZ1WcLx","block_height":126260770,"block_timestamp":1724262504076901600},"receipt_outcome":{"gas_burnt":3788799254413.0,"tokens_burnt":3.788799254413e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5pfHeQrmc4riRKyXRNMy8KCNjg96ESJdQSsh1o3M9vca","included_in_block_hash":"7ApfUUGK79KHJwoi4enfcousfKyByKvigK5wc6MW2Q3p","block_timestamp":"1724262502723441322","block":{"block_height":126260769},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.788799254413e20,"args":"{\"id\": 40, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.759841223109e20}},{"id":"7617603194","receipt_id":"55eLbvSQSpMWyLDn7nzHc94v5kPsuCWhe9cAuNWFKLBx","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8grmHXwwAu9LDZfsFCFdkMrgGspjFPE2fSusSQj79ssz","block_height":126260771,"block_timestamp":1724262505327371000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"5pfHeQrmc4riRKyXRNMy8KCNjg96ESJdQSsh1o3M9vca","included_in_block_hash":"7ApfUUGK79KHJwoi4enfcousfKyByKvigK5wc6MW2Q3p","block_timestamp":"1724262502723441322","block":{"block_height":126260769},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1.124e18,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.759841223109e20}},{"id":"7617603199","receipt_id":"GnzjEe74ysiMU2AjmdXkhcbCRhd8FgW6gm45phDv4hHW","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8grmHXwwAu9LDZfsFCFdkMrgGspjFPE2fSusSQj79ssz","block_height":126260771,"block_timestamp":1724262505327371000},"receipt_outcome":{"gas_burnt":3214519260236.0,"tokens_burnt":3.214519260236e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5pfHeQrmc4riRKyXRNMy8KCNjg96ESJdQSsh1o3M9vca","included_in_block_hash":"7ApfUUGK79KHJwoi4enfcousfKyByKvigK5wc6MW2Q3p","block_timestamp":"1724262502723441322","block":{"block_height":126260769},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.214519260236e20,"args":"{\"proposal_id\": 40}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.759841223109e20}},{"id":"7617603604","receipt_id":"AmKqpQkFwULUQbkMibpXSb5xFhqd7ksTHytTLa1erw4e","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BX7u6dNn3TnKUFEqreoGfkFx3NuNx3qWmtqx2bPS1zzw","block_height":126260773,"block_timestamp":1724262508006039800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"5pfHeQrmc4riRKyXRNMy8KCNjg96ESJdQSsh1o3M9vca","included_in_block_hash":"7ApfUUGK79KHJwoi4enfcousfKyByKvigK5wc6MW2Q3p","block_timestamp":"1724262502723441322","block":{"block_height":126260769},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.759841223109e20}},{"id":"7617640819","receipt_id":"9ddHPdNygSxRWzvZKD1cSNNQioM8PEnMAG8dRPKRshdW","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Arhd984TiqbM6x8RmL1sMbbqgxbfnNfmDo5UN9udKpVr","block_height":126260911,"block_timestamp":1724262678733632800},"receipt_outcome":{"gas_burnt":2880816668054.0,"tokens_burnt":2.880816668054e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3cpNKH3e5wc62RCPpaj1o8d3WQbugSScxFzNX22Zo2os","included_in_block_hash":"9KvUVdyP8vWmz27R87RXf3cJYKcJASx6i1oUfmWyGEHR","block_timestamp":"1724262677241589856","block":{"block_height":126260910},"receipt_conversion_tokens_burnt":"32718066971500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.880816668054e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"50000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"testttttt\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":175}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.2079973377689996e20}},{"id":"7617687054","receipt_id":"DxBkrR8A8doLU5o8z4fQ9LXDYShYVohYeukFzQxMesBn","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HZLiUdvmLgtPWHrF6RVN8cxhonec8KYKGqmFy8wpTK7a","block_height":126261091,"block_timestamp":1724262893106075000},"receipt_outcome":{"gas_burnt":4492368041154.0,"tokens_burnt":4.4923680411539997e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"4X2WUdJkf9nTF4ame8okhFaCKVZgMPeSXCRC5YmWjxMs","included_in_block_hash":"6ARk5X6ycYHSwZogDZ7qD6aD3kcJAhbzNVQcshNcX9Xr","block_timestamp":"1724262891983630320","block":{"block_height":126261090},"receipt_conversion_tokens_burnt":"48987750529500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.4923680411539997e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [19, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"test05.near\", \"treasurytestuserledger.near\", \"theori.near\", \"test03.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [18, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.982245546449e20}},{"id":"7617687962","receipt_id":"47CSCWQgFNWapTvfXFweUU1UVmAaiFGgiNN4HzPQtsWM","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GUEXKugWgmvoy1YGBDpKkVTUVkQAMGr6bnVuUnc9wDYM","block_height":126261095,"block_timestamp":1724262897440180500},"receipt_outcome":{"gas_burnt":4849366596533.0,"tokens_burnt":4.849366596533e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FT2J9SQnQvFA8zs4W3P8eUeXmXpVrQi59RK7KZMbtZkD","included_in_block_hash":"DbYQeovX2C1e9asbSrKde5dryygkkj6mM24UJkR1eeRm","block_timestamp":"1724262896406493208","block":{"block_height":126261094},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.849366596533e20,"args":"{\"id\": 52, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.382706742493e20}},{"id":"7617688306","receipt_id":"5sfXmj3rbtZbcJhM9JcP3UuoUNaoNgE4iPukGxgia2NP","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2xdUsERyPbeLnzdw2rfpzuTyjSdCUdx2R7du1DMSLrqY","block_height":126261096,"block_timestamp":1724262898571855400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"FT2J9SQnQvFA8zs4W3P8eUeXmXpVrQi59RK7KZMbtZkD","included_in_block_hash":"DbYQeovX2C1e9asbSrKde5dryygkkj6mM24UJkR1eeRm","block_timestamp":"1724262896406493208","block":{"block_height":126261094},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.382706742493e20}},{"id":"7637336515","receipt_id":"GwDMVtN3V1hKyvbx1sWHHg5quiECqJp7EiUJpwPw3kea","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5WF2JsEWhmZd1jN3LS6F1BicdU76Rrwe7ZdEXesBobf","block_height":126317428,"block_timestamp":1724331894401602600},"receipt_outcome":{"gas_burnt":4493057558193.0,"tokens_burnt":4.4930575581929996e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3k1w4CNEQux2u5EMnibovo4415iX2jUP2wsq4tNnatV1","included_in_block_hash":"FBkSoCJnAaYhNzFKr8Gtkzce5Pf7PBQQmRcc47yJSm5S","block_timestamp":"1724331893100089750","block":{"block_height":126317427},"receipt_conversion_tokens_burnt":"48816089155500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.4930575581929996e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"test03.near\", \"test05.near\", \"theori.near\", \"treasurytestuserledger.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.9812184497479995e20}},{"id":"7637355482","receipt_id":"57LabJe22PNqchp6DqVUbXQwTKGTf4Jb9fKinbyGgjXU","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"422VA95naztk7j9ZUPZnAdkU1AwCmgNnC4A3GPkgFHC5","block_height":126317482,"block_timestamp":1724331965664388600},"receipt_outcome":{"gas_burnt":4853914881599.0,"tokens_burnt":4.853914881599e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GLfqtJiJoS8AmhtcPMtqP7sAaofSuQY7CrbCFT29eNWv","included_in_block_hash":"CwJSCWPv6o4GHqz7FJzy9nU184ANniHaTvAS8LWZ7cwv","block_timestamp":"1724331964179984547","block":{"block_height":126317481},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.853914881599e20,"args":"{\"id\": 53, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.387255027559e20}},{"id":"7637356153","receipt_id":"EJ16ZWL9ruhNAHpQaVwrwV5USwzutKVDT5Mqi11zj9Lt","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"41Stf98RR19A5jkiaNqJo1Ff9ZqMA2FGcCy8rCUeyTC5","block_height":126317483,"block_timestamp":1724331966671866400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"GLfqtJiJoS8AmhtcPMtqP7sAaofSuQY7CrbCFT29eNWv","included_in_block_hash":"CwJSCWPv6o4GHqz7FJzy9nU184ANniHaTvAS8LWZ7cwv","block_timestamp":"1724331964179984547","block":{"block_height":126317481},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.387255027559e20}},{"id":"7665321948","receipt_id":"5oVQkYA1M5WGrs62VshmPGQGNo6Rb5NirR3vP5KTCqHc","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EJ6ycxV7jNLzh2VN9WLZzu2zkGyL2tkD3VWqHfCcLjbU","block_height":126379146,"block_timestamp":1724406874295778600},"receipt_outcome":{"gas_burnt":3782247694810.0,"tokens_burnt":3.7822476948099996e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"ecuMqk5yMoArL7dX7KAnG3MxBvqdFY7wbMLS7RNnwn5","included_in_block_hash":"BFDpUuQjakxHCsUszoc9kVufz1tU6P5nvgY54JafVwH2","block_timestamp":"1724406872968221856","block":{"block_height":126379145},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.7822476948099996e20,"args":"{\"id\": 51, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.664427857191e20}},{"id":"7665322414","receipt_id":"6dEabJipgHipj5tVidQfZdqZg86obkSCrb2CS7cVuE9r","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"G56GQJKkvya9RvjFNA3h9eVZBYdbJTjBPyQSEDHjPZ5Y","block_height":126379147,"block_timestamp":1724406875632982300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"ecuMqk5yMoArL7dX7KAnG3MxBvqdFY7wbMLS7RNnwn5","included_in_block_hash":"BFDpUuQjakxHCsUszoc9kVufz1tU6P5nvgY54JafVwH2","block_timestamp":"1724406872968221856","block":{"block_height":126379145},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":5e19,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.664427857191e20}},{"id":"7665322417","receipt_id":"7zQx462i8a35hpgFBEJwpBWhTvgrkBeVpgxoUDK94m9J","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"G56GQJKkvya9RvjFNA3h9eVZBYdbJTjBPyQSEDHjPZ5Y","block_height":126379147,"block_timestamp":1724406875632982300},"receipt_outcome":{"gas_burnt":3125657453921.0,"tokens_burnt":3.125657453921e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"ecuMqk5yMoArL7dX7KAnG3MxBvqdFY7wbMLS7RNnwn5","included_in_block_hash":"BFDpUuQjakxHCsUszoc9kVufz1tU6P5nvgY54JafVwH2","block_timestamp":"1724406872968221856","block":{"block_height":126379145},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.125657453921e20,"args":"{\"proposal_id\": 51}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.664427857191e20}},{"id":"7665323177","receipt_id":"BwV3iGv1M9212u3qtELhcZqCEPzBE5ru1Bnz4VFXM8fG","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5sJ5Y33E19XABn3wNbv8nS99eZJQZWFgD3xPPZh5a4dV","block_height":126379149,"block_timestamp":1724406878279723500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"ecuMqk5yMoArL7dX7KAnG3MxBvqdFY7wbMLS7RNnwn5","included_in_block_hash":"BFDpUuQjakxHCsUszoc9kVufz1tU6P5nvgY54JafVwH2","block_timestamp":"1724406872968221856","block":{"block_height":126379145},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.664427857191e20}},{"id":"7665374578","receipt_id":"5rp5WMj6tZNdZ5roKfQTBhe8GxAJuL9REpPCBtJ711j9","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DELBsRSPt35RceqmYWNuVpDw2Y6r5u2fngTUB3wBo8cY","block_height":126379234,"block_timestamp":1724406985399056600},"receipt_outcome":{"gas_burnt":3781481384950.0,"tokens_burnt":3.78148138495e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"8w4vWVmzphF6kee9aEtcQVuv9K1ZAt6vGiLAyiDaqrAA","included_in_block_hash":"98Vm2JFfDHhEbJyKViYm8iessmZsJ226tJz7hrE6MYfZ","block_timestamp":"1724406984162859445","block":{"block_height":126379233},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.78148138495e20,"args":"{\"id\": 39, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.690588514683e20}},{"id":"7665375784","receipt_id":"6JD37JZa7GN8n2tTXED2PDhLa3U5oEW6MEBDQXcrAuex","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"88VdbxnSCdFHsUV6Br4Nte2W4dQjKdcJrfjXPcXjBL9B","block_height":126379235,"block_timestamp":1724406986754842000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"8w4vWVmzphF6kee9aEtcQVuv9K1ZAt6vGiLAyiDaqrAA","included_in_block_hash":"98Vm2JFfDHhEbJyKViYm8iessmZsJ226tJz7hrE6MYfZ","block_timestamp":"1724406984162859445","block":{"block_height":126379233},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":4e19,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.690588514683e20}},{"id":"7665375787","receipt_id":"G5BFzzcQAgfp94fGYw4FrRJ1gaevmwcGbcXa2j3yUhnh","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"88VdbxnSCdFHsUV6Br4Nte2W4dQjKdcJrfjXPcXjBL9B","block_height":126379235,"block_timestamp":1724406986754842000},"receipt_outcome":{"gas_burnt":3152584421273.0,"tokens_burnt":3.152584421273e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"8w4vWVmzphF6kee9aEtcQVuv9K1ZAt6vGiLAyiDaqrAA","included_in_block_hash":"98Vm2JFfDHhEbJyKViYm8iessmZsJ226tJz7hrE6MYfZ","block_timestamp":"1724406984162859445","block":{"block_height":126379233},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.152584421273e20,"args":"{\"proposal_id\": 39}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.690588514683e20}},{"id":"7665376779","receipt_id":"7qo7y74bSmhHGfy5tiXdEXZaRjpjbaiMD2KPxtfM4RE6","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"C7HYntQ5gwzEay9j28EGowqbFnaZkYnjbusuoTMT2kry","block_height":126379237,"block_timestamp":1724406989471400400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"8w4vWVmzphF6kee9aEtcQVuv9K1ZAt6vGiLAyiDaqrAA","included_in_block_hash":"98Vm2JFfDHhEbJyKViYm8iessmZsJ226tJz7hrE6MYfZ","block_timestamp":"1724406984162859445","block":{"block_height":126379233},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.690588514683e20}},{"id":"7665409351","receipt_id":"4CQQSUHm24NRDC53LEj1dcnU82xWUiE3KoJzcdA7zDpL","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6JdVTur9CoomnS5sWKJrJwNsXdKGbxp8po52a4UubykK","block_height":126379343,"block_timestamp":1724407115799080200},"receipt_outcome":{"gas_burnt":2941410585769.0,"tokens_burnt":2.941410585769e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FX3WXhCMB15Xi25y2H4HmRzWz4Ac2LssoqezqksRnhU2","included_in_block_hash":"2kmSbgsX1cXdVgZJBqwydbDnx8myC7wej1eqsbAJvtPE","block_timestamp":"1724407114596955778","block":{"block_height":126379342},"receipt_conversion_tokens_burnt":"32913570203000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.941410585769e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":177}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.270546287799e20}},{"id":"7665425149","receipt_id":"HBwBwik19FpKDeNvearULxYTywyojMiQ41ZcMcgKwnRN","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3aWqCFRqPGGLGhbwFH5AMRhVELhNwSxKVmaAB6manZZb","block_height":126379389,"block_timestamp":1724407173422918400},"receipt_outcome":{"gas_burnt":3364776835981.0,"tokens_burnt":3.364776835981e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FyhTkZ6i9Gb499KGudza6D6eRjRnXjmD2eU7iD3hwRcL","included_in_block_hash":"6aQf8KX8KropcuLXQAhdKQkvSLBNG38bp1k2Pu5y7gCs","block_timestamp":"1724407172169650074","block":{"block_height":126379388},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.364776835981e20,"args":"{\"id\": 54, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.898069298226e20}},{"id":"7665426004","receipt_id":"F6kDPrD1Wu9DR8y33jouuhRcvks8bKPcSDAKxiJ5MZZk","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BKDLVSK3A5NvK25G136neZBbETqvMrepmkzDH4bh2E7a","block_height":126379390,"block_timestamp":1724407174748193000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"FyhTkZ6i9Gb499KGudza6D6eRjRnXjmD2eU7iD3hwRcL","included_in_block_hash":"6aQf8KX8KropcuLXQAhdKQkvSLBNG38bp1k2Pu5y7gCs","block_timestamp":"1724407172169650074","block":{"block_height":126379388},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.898069298226e20}},{"id":"7674882842","receipt_id":"G1HXdGEPBHj8hzMxQk6x6nGSgGSWSY5cD4KUn2pasJcD","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3T5u9ukVfdYztRhxGg6aXhkMhLDTgbRfGU8q7Ck3RQQ7","block_height":126400813,"block_timestamp":1724433574743033600},"receipt_outcome":{"gas_burnt":4524169460191.0,"tokens_burnt":4.524169460191e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GkktdDHgwPjJ5YDMmA4StsqpnSBhyKcaR9o9h3cepuAP","included_in_block_hash":"6KWuEwugH9nwzy7wvi1Kh6mSvCLqDy1XTvkTbRMNtsCw","block_timestamp":"1724433573371240708","block":{"block_height":126400812},"receipt_conversion_tokens_burnt":"48892383099500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.524169460191e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"test03.near\", \"test05.near\", \"theori.near\", \"treasurytestuserledger.near\", \"tfdevhub.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"100000000000000000000000\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.013093291186e20}},{"id":"7674884168","receipt_id":"9PHi4ia6ie6dDpUJ3ktMuDAgpdoJgZ83esycuBcVrNdS","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"67TSwQzuvgBnqg9xRkVQaUCAXk95J5sFppJpw6W2MHTA","block_height":126400817,"block_timestamp":1724433579936128000},"receipt_outcome":{"gas_burnt":4907080338173.0,"tokens_burnt":4.907080338173e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3sWqhXVXw6vrgeE3iCMXMgn1TWV3ieXZ73uQG8UQZhcg","included_in_block_hash":"DPebJWREysUzXaAiCkJ2LrKsXMYLqvgLJJ73pzpZGjR","block_timestamp":"1724433578959984306","block":{"block_height":126400816},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.907080338173e20,"args":"{\"id\": 55, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.440420484133e20}},{"id":"7674884845","receipt_id":"HCGdtzGNgPrRCUQHFd6dvBVJq5e2HiFwXtkcvwWALWRJ","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Ay6LPT6Mu57jniocTzXHjniPGK6MWowL7hYFgVmfwwq2","block_height":126400818,"block_timestamp":1724433581331266600},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"3sWqhXVXw6vrgeE3iCMXMgn1TWV3ieXZ73uQG8UQZhcg","included_in_block_hash":"DPebJWREysUzXaAiCkJ2LrKsXMYLqvgLJJ73pzpZGjR","block_timestamp":"1724433578959984306","block":{"block_height":126400816},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.440420484133e20}},{"id":"7743803158","receipt_id":"GEGj4pNh6th6bVT9oyb4zEigPxP61SBFZFQNaWXYhxwv","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4sbUbQaEmMqytEstUaSgDP2bekYe5mb17vaQ497TLqzZ","block_height":126620011,"block_timestamp":1724688272390893000},"receipt_outcome":{"gas_burnt":2944185854662.0,"tokens_burnt":2.944185854662e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"DwSkiRh9Moz7bTruLeZ9WQV4piJ53wx8pUmbTzdf29Zy","included_in_block_hash":"EiANgrL4LKex6mYBRGsUJS3y7XUAQgu4dsb122BA9joE","block_timestamp":"1724688271064637990","block":{"block_height":126620010},"receipt_conversion_tokens_burnt":"32913570203000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.944185854662e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 29 July - 11 August\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":177}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.273321556692e20}},{"id":"7743826895","receipt_id":"57wYv2iayPdWkia5hFdbY1nHKBBUZfRgpYsn6Hew2ZtL","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BTWFcanCQ3JXVJYmrxP6GkdPfiVSsxJw6Vt92okKjjuV","block_height":126620043,"block_timestamp":1724688311636754400},"receipt_outcome":{"gas_burnt":2902979038176.0,"tokens_burnt":2.902979038176e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"4TPa5MeuFP4RpdDQYrWaeMCh1YLUXasTypz4sPV1LTUv","included_in_block_hash":"FBHfMEf7BChaeV8XiPqBCDkAUwbFBV39vUYzsYBo67kQ","block_timestamp":"1724688310379952734","block":{"block_height":126620042},"receipt_conversion_tokens_burnt":"32923106946000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.902979038176e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"500\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Hello\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":175}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.232210107636e20}},{"id":"7743847282","receipt_id":"3CKmqAz3RuFYc7ZfBmD51QzyDnVbJ2PzAPpGcTXgc7Vk","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3hHpBtycxhkJWj8sLMD4fUJ9FHRQhMKNcuHZSaz6t8sd","block_height":126620072,"block_timestamp":1724688347216672500},"receipt_outcome":{"gas_burnt":2895312553874.0,"tokens_burnt":2.8953125538739998e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"C8CWPTqMNtecFRrDtJQiBDAyXKCXgPVvFhvxb39hzKFN","included_in_block_hash":"AGZMQiuz1t5AP6ipPNeLMXJS7tNK674hNDxnmCh8m14p","block_timestamp":"1724688346131988059","block":{"block_height":126620071},"receipt_conversion_tokens_burnt":"33147220406500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.8953125538739998e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000\", \"token_id\": \"usdt.tether-token.near\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Developer Contributor report by Megha for 07/15/2024 - 08/11/2024\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worked on treasury dashboard: added new payment and members page, added base for stake delegation requests.\\\\\\\\\\\\\\\\nWorked on devhub and other instances: fixed minor bugs, created reusable proposal feed component.\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":174}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.226784757939e20}},{"id":"7743867057","receipt_id":"8dDSz7dztt5BTD6Bp2ARvrF5gPwXZiBE8bbyZMKoN7eV","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BUXLSacY8FwgGQqf14DWbrjNQHD5yQTpFB4VBBWyhZzw","block_height":126620101,"block_timestamp":1724688381266108000},"receipt_outcome":{"gas_burnt":2839689182346.0,"tokens_burnt":2.8396891823459998e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"ANLtzrs9prHt8vW76WpAc4Y1J4dNCwhuwYoZzPYVTJgd","included_in_block_hash":"5hDDCDqd9eNhapbYqWCRKvTSCmsVnpMzxhLetejYsCsa","block_timestamp":"1724688380134665404","block":{"block_height":126620100},"receipt_conversion_tokens_burnt":"31893138702000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.8396891823459998e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"This is a test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"This is another test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Hello\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.1586205693660004e20}},{"id":"7743888761","receipt_id":"5pJuqj3mnHCu4eqZi5F5P7u4sfzYeBka1se3oFCmQXPq","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BSAygPeJe1dufzKGgYzSdoPf2pezcTgJ7yiQnToqoZsM","block_height":126620136,"block_timestamp":1724688420955437800},"receipt_outcome":{"gas_burnt":1627849858429.0,"tokens_burnt":1.627849858429e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"2KNYpQSw9gr6YpxC5M2QQxFRiFKEaoQ7CH2YJeTWqHVa","included_in_block_hash":"BSZ1wXhhSZLm6MdZqyMvsjszSMcAYJLp4BEvuM9mHoJG","block_timestamp":"1724688419820884453","block":{"block_height":126620135},"receipt_conversion_tokens_burnt":"32226924707000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":1.627849858429e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"0.005\", \"token_id\": \"usdt.tether-token.near\", \"receiver_id\": \"theori.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Near Contract Standards payment request by Robert\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Contract Standards Work Group grant\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"a\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":173}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":1.950119105499e20}},{"id":"7744231949","receipt_id":"G7YR5a8X9qmTBftLC8D9voaxGyNnw3TugzRyaSW3QMaq","predecessor_account_id":"test03.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2v4bgroNBBpQafwUktqMERx3T5FkfYJHbK4UTG5pZtCt","block_height":126620752,"block_timestamp":1724689157243324200},"receipt_outcome":{"gas_burnt":3650974065565.0,"tokens_burnt":3.650974065565e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9rM594hPFjDHMRSUt4L6uPn1PcTtVou6jo9cfxe76LuL","included_in_block_hash":"4jQeupqPyafTniopawV6VfMzWCzDs4A5hthfHhH5EuQT","block_timestamp":"1724689155989830310","block":{"block_height":126620751},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.650974065565e20,"args":"{\"id\": 59, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.515261402997001e20}},{"id":"7744232363","receipt_id":"6fWXsijxaS7NiHKmVD6tiB9ddPc6kzXJ2uqa2RLtBftv","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3PipouKJSqcjoXjkTd3uxuUwo2JjjVxURjBrjk6hureJ","block_height":126620753,"block_timestamp":1724689158556558800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"9rM594hPFjDHMRSUt4L6uPn1PcTtVou6jo9cfxe76LuL","included_in_block_hash":"4jQeupqPyafTniopawV6VfMzWCzDs4A5hthfHhH5EuQT","block_timestamp":"1724689155989830310","block":{"block_height":126620751},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e21,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.515261402997001e20}},{"id":"7744232368","receipt_id":"59ebGKSpfidrtheMQ3ufszBaDnLrb5YG7jRhmXhL9wC2","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3PipouKJSqcjoXjkTd3uxuUwo2JjjVxURjBrjk6hureJ","block_height":126620753,"block_timestamp":1724689158556558800},"receipt_outcome":{"gas_burnt":3107764628972.0,"tokens_burnt":3.1077646289720004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9rM594hPFjDHMRSUt4L6uPn1PcTtVou6jo9cfxe76LuL","included_in_block_hash":"4jQeupqPyafTniopawV6VfMzWCzDs4A5hthfHhH5EuQT","block_timestamp":"1724689155989830310","block":{"block_height":126620751},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.1077646289720004e20,"args":"{\"proposal_id\": 59}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.515261402997001e20}},{"id":"7744233210","receipt_id":"7A26auABBxQRseRbJt7jSr27C5ZuAF9Q2dVrP3Dep84V","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Ci4pqukrkQQpjLcs1894i1pbdsSPpH1hW4kUoECM7bTf","block_height":126620755,"block_timestamp":1724689161158936000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"9rM594hPFjDHMRSUt4L6uPn1PcTtVou6jo9cfxe76LuL","included_in_block_hash":"4jQeupqPyafTniopawV6VfMzWCzDs4A5hthfHhH5EuQT","block_timestamp":"1724689155989830310","block":{"block_height":126620751},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.515261402997001e20}},{"id":"7751028708","receipt_id":"9Kq6dWPNoej58eGzbQ2aWTMEAggfWJJNJpQjK5xDuXQM","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FKCGzovbD7S236PHe82PuEgjBpEKcBTDTMogAScAacHr","block_height":126632611,"block_timestamp":1724703040886359800},"receipt_outcome":{"gas_burnt":3031409623933.0,"tokens_burnt":3.031409623933e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3mPneiJCVQoBipgduymU4hz4VJuod4faYxsLGp6gNsSH","included_in_block_hash":"NSQBdzuhxSQXhZUF9n2sVnHqTf1ZSoTzBuQTUb11nKo","block_timestamp":"1724703039560497467","block":{"block_height":126632610},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.031409623933e20,"args":"{\"id\": 32, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.341519523678e20}},{"id":"7768932622","receipt_id":"78srNeXWRHCaKfeJ3YYKaLjG739bCNSbk4HKAeeUa5St","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"B7cXwTB1E3PrQrbEU4VSBvRmMyLezzqijsseG1gTbDhp","block_height":126675759,"block_timestamp":1724753957924404700},"receipt_outcome":{"gas_burnt":3863968731285.0,"tokens_burnt":3.863968731285e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AqgDm2oo1GckWdy9YeVWyPJyX4Us3kKhSSRT7sLH3nb2","included_in_block_hash":"D2N9K6hRRjwQ6Kpq4DSQuWXZUyUQ7YBbNuktFzXw5ZW2","block_timestamp":"1724753956512187369","block":{"block_height":126675758},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.863968731285e20,"args":"{\"id\": 58, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.557929909297e20}},{"id":"7768933156","receipt_id":"kGCLhgrnNptsfhdPVbKJ31aWepJutYkh7JUBnYKqPDZ","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"usdt.tether-token.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HGX83oG4CtDm5yBHwzUkYoHAcYsWk4aVWsFJkHvVkujW","block_height":126675760,"block_timestamp":1724753959144467200},"receipt_outcome":{"gas_burnt":1980798984093.0,"tokens_burnt":1.980798984093e20,"executor_account_id":"usdt.tether-token.near","status":false},"transaction_hash":"AqgDm2oo1GckWdy9YeVWyPJyX4Us3kKhSSRT7sLH3nb2","included_in_block_hash":"D2N9K6hRRjwQ6Kpq4DSQuWXZUyUQ7YBbNuktFzXw5ZW2","block_timestamp":"1724753956512187369","block":{"block_height":126675758},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer","deposit":1.0,"fee":1.980798984093e20,"args":"{\"memo\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Developer Contributor report by Megha for 07/15/2024 - 08/11/2024\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worked on treasury dashboard: added new payment and members page, added base for stake delegation requests.\\\\\\\\\\\\\\\\nWorked on devhub and other instances: fixed minor bugs, created reusable proposal feed component.\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":174}\", \"amount\": \"1000\", \"receiver_id\": \"theori.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.557929909297e20}},{"id":"7768933162","receipt_id":"EF9E6k8qr55Yy7QEP3JBE7FPvqdHrYD8NXsD38GYjabt","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HGX83oG4CtDm5yBHwzUkYoHAcYsWk4aVWsFJkHvVkujW","block_height":126675760,"block_timestamp":1724753959144467200},"receipt_outcome":{"gas_burnt":2403004610459.0,"tokens_burnt":2.403004610459e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AqgDm2oo1GckWdy9YeVWyPJyX4Us3kKhSSRT7sLH3nb2","included_in_block_hash":"D2N9K6hRRjwQ6Kpq4DSQuWXZUyUQ7YBbNuktFzXw5ZW2","block_timestamp":"1724753956512187369","block":{"block_height":126675758},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":2.403004610459e20,"args":"{\"proposal_id\": 58}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.557929909297e20}},{"id":"7768933323","receipt_id":"3ozMNnryouNFkyXiN8NnneEdEf7aX9dmvcLTukc1jTTh","predecessor_account_id":"system","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3r2jTc1U8HhT82Ah3fg8aTdup2BMa77wwyKiiysc5L15","block_height":126675761,"block_timestamp":1724753960433665500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":0.0,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AqgDm2oo1GckWdy9YeVWyPJyX4Us3kKhSSRT7sLH3nb2","included_in_block_hash":"D2N9K6hRRjwQ6Kpq4DSQuWXZUyUQ7YBbNuktFzXw5ZW2","block_timestamp":"1724753956512187369","block":{"block_height":126675758},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1.0,"fee":0.0,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.557929909297e20}},{"id":"7769211723","receipt_id":"DXq3TJjH4xKyY7QqnQrGHDPGH9nS4a42dbYnCCoLGPc6","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3DPkB4ef2kuyzpy4DtrXep8Acto6XcgCqLU7srAnSFej","block_height":126676367,"block_timestamp":1724754688201643300},"receipt_outcome":{"gas_burnt":3863233976945.0,"tokens_burnt":3.863233976945e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"73V5jQcKj5R5p3wFHRezmAxDr3RTayMPSJh2WYruwyGY","included_in_block_hash":"3v3s2MZvHTisytUmmMMTQGWz3XKk7p1r9Kx5WnHSyTDj","block_timestamp":"1724754687060511785","block":{"block_height":126676366},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.863233976945e20,"args":"{\"id\": 57, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.757419231398e20}},{"id":"7769212371","receipt_id":"9pgPZdEzBzLtgpMePyVKg72wiVm6dk2s7jtRy5rNjKCh","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","receipt_kind":"ACTION","receipt_block":{"block_hash":"E6tUbsjJeiosUuXLLYXcDVgGZYWEpFZYrSCxrCPSVF2k","block_height":126676368,"block_timestamp":1724754689662843100},"receipt_outcome":{"gas_burnt":2187252459470.0,"tokens_burnt":2.18725245947e20,"executor_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","status":false},"transaction_hash":"73V5jQcKj5R5p3wFHRezmAxDr3RTayMPSJh2WYruwyGY","included_in_block_hash":"3v3s2MZvHTisytUmmMMTQGWz3XKk7p1r9Kx5WnHSyTDj","block_timestamp":"1724754687060511785","block":{"block_height":126676366},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer","deposit":1.0,"fee":2.18725245947e20,"args":"{\"memo\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Owen DevRel Contributor Report 15 July - 28 July\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Bi-weekly paid developer relations contributor report. These activities aim to improve the developer experience in the NEAR ecosystem. \\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Hello\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":175}\", \"amount\": \"500\", \"receiver_id\": \"theori.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.757419231398e20}},{"id":"7769212372","receipt_id":"7TbLkjJ3HXRRhJmG8WT54uaP392uFcNGi4xWFQfNRhL5","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"E6tUbsjJeiosUuXLLYXcDVgGZYWEpFZYrSCxrCPSVF2k","block_height":126676368,"block_timestamp":1724754689662843100},"receipt_outcome":{"gas_burnt":2396775211523.0,"tokens_burnt":2.396775211523e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"73V5jQcKj5R5p3wFHRezmAxDr3RTayMPSJh2WYruwyGY","included_in_block_hash":"3v3s2MZvHTisytUmmMMTQGWz3XKk7p1r9Kx5WnHSyTDj","block_timestamp":"1724754687060511785","block":{"block_height":126676366},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":2.396775211523e20,"args":"{\"proposal_id\": 57}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.757419231398e20}},{"id":"7769212800","receipt_id":"7C4Ez2VBz1vBX1h3jADHJQgVkKbxxAhEW1YoEaCEax4K","predecessor_account_id":"system","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EMAu6sbXdAGcjgb1Co9dv17sGyCm9R7KwNzcQjWh4xQC","block_height":126676369,"block_timestamp":1724754690568885000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":0.0,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"73V5jQcKj5R5p3wFHRezmAxDr3RTayMPSJh2WYruwyGY","included_in_block_hash":"3v3s2MZvHTisytUmmMMTQGWz3XKk7p1r9Kx5WnHSyTDj","block_timestamp":"1724754687060511785","block":{"block_height":126676366},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1.0,"fee":0.0,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.757419231398e20}},{"id":"7821291468","receipt_id":"4VGwy8PMQ6ZnRJLyLbqJS8aMBjchtzkUutYv5guJCPB7","predecessor_account_id":"freski.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FjA92RBq118h6PUvCNKSJ1qEi4gaMCZSNdZJqqocotWD","block_height":126790324,"block_timestamp":1724899764673791000},"receipt_outcome":{"gas_burnt":2890464568826.0,"tokens_burnt":2.890464568826e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2aBHA5rhWXpJn9mJ1tDWqs9KuenLB2vQP3tsDJxTZ5Nz","included_in_block_hash":"DFBcoV6j3XWZPAzqghdw7Wew2pStKiB7RjfAdYBZZ3ZV","block_timestamp":"1724899763508966254","block":{"block_height":126790323},"receipt_conversion_tokens_burnt":"31802539643500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.890464568826e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"freski.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Neadre Design System\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.208489965261e20}},{"id":"8087371652","receipt_id":"FpbBaozNcAR2jhhMuR3Dzot54SGGosZZYZCPMvMZCeW2","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FJ3n6G5jvLFfLNEEerMTNsaxuJKSjxs4FiAzyK1HEr4W","block_height":127439129,"block_timestamp":1725645925324875500},"receipt_outcome":{"gas_burnt":2168041938396.0,"tokens_burnt":2.168041938396e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"Ga8qBYyPdqsbuxcLTjSuiREZoMgmSyPuxj79yKbpk4Fb","included_in_block_hash":"4Amx4JQs5ULshEKUoxNjpq6VeCPqJHpbAb4h8SXwNuZU","block_timestamp":"1725645924233076317","block":{"block_height":127439128},"receipt_conversion_tokens_burnt":"32322292137000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.168041938396e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1500000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"devdao.sputnik-dao.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.4912648597660002e20}},{"id":"8087400270","receipt_id":"93UFQC1mkK5dk8zYK5ZGfGrngS1gm9tNb7mxvKtE1Hfp","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"CMvz6GEc2JkEWfrZaSvU3XF8qtSoybH9m7ftpssV5HS4","block_height":127439208,"block_timestamp":1725646014308286000},"receipt_outcome":{"gas_burnt":2846868167592.0,"tokens_burnt":2.846868167592e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3uBo2Kff8GsycPutSkBigfYgmSsxfJnBCgXEQc9qfwMT","included_in_block_hash":"B8NxqPrXjRwPzoEmSCWik1XXtcrNeeG8QVBpMSj7xSSX","block_timestamp":"1725646013205462608","block":{"block_height":127439207},"receipt_conversion_tokens_burnt":"32322292137000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.846868167592e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1500000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"devdao.sputnik-dao.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.170091088962e20}},{"id":"8087521356","receipt_id":"HG5dmqfhQHntWA3m9c5tBjrAuRxQaY2xPonw8TCdP2HS","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9FGh8MnQTYhjoJGX9p8qxudcFT4Z8bxEgozf2o9aeB7z","block_height":127439505,"block_timestamp":1725646353129980400},"receipt_outcome":{"gas_burnt":3832322423885.0,"tokens_burnt":3.832322423885e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"C8GF1LRhq5YuNYZWa5B2htAWcJpkp3YABf1uJjWmB3i2","included_in_block_hash":"C97tgrg7xmCdjgCLZPCFoYQmy4hm8kSyJsbz2S7BXJnh","block_timestamp":"1725646352026696588","block":{"block_height":127439504},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.832322423885e20,"args":"{\"id\": 61, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.750889276952e20}},{"id":"8087522247","receipt_id":"3irhtnJ5yWAiSUunw6N6d7TpePLevHPyoEwn2LS3RrQU","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","receipt_kind":"ACTION","receipt_block":{"block_hash":"Cj2Ydu3tgrkuziG2b7oez82ozNWyBxxB64cmPwCTLHUc","block_height":127439506,"block_timestamp":1725646354453985000},"receipt_outcome":{"gas_burnt":2226967864052.0,"tokens_burnt":2.226967864052e20,"executor_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","status":false},"transaction_hash":"C8GF1LRhq5YuNYZWa5B2htAWcJpkp3YABf1uJjWmB3i2","included_in_block_hash":"C97tgrg7xmCdjgCLZPCFoYQmy4hm8kSyJsbz2S7BXJnh","block_timestamp":"1725646352026696588","block":{"block_height":127439504},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer","deposit":1.0,"fee":2.226967864052e20,"args":"{\"memo\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\", \"amount\": \"1500000\", \"receiver_id\": \"devdao.sputnik-dao.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.750889276952e20}},{"id":"8087522250","receipt_id":"5qwksUAEfs4jfsXDwvgRTjJ6vRuKfuhDzKHsdNbhGcnb","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Cj2Ydu3tgrkuziG2b7oez82ozNWyBxxB64cmPwCTLHUc","block_height":127439506,"block_timestamp":1725646354453985000},"receipt_outcome":{"gas_burnt":2381441405555.0,"tokens_burnt":2.381441405555e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"C8GF1LRhq5YuNYZWa5B2htAWcJpkp3YABf1uJjWmB3i2","included_in_block_hash":"C97tgrg7xmCdjgCLZPCFoYQmy4hm8kSyJsbz2S7BXJnh","block_timestamp":"1725646352026696588","block":{"block_height":127439504},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":2.381441405555e20,"args":"{\"proposal_id\": 61}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.750889276952e20}},{"id":"8087523021","receipt_id":"9M7rqhGmvDoBoGK7GARoQaxPs27Pr1sz4qYZuTX1omrL","predecessor_account_id":"system","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4x9BXzm4SJoNau6E2bFtcpPUyPo6m4k9ecNbqfPjDZgs","block_height":127439507,"block_timestamp":1725646355596628500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":0.0,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"C8GF1LRhq5YuNYZWa5B2htAWcJpkp3YABf1uJjWmB3i2","included_in_block_hash":"C97tgrg7xmCdjgCLZPCFoYQmy4hm8kSyJsbz2S7BXJnh","block_timestamp":"1725646352026696588","block":{"block_height":127439504},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1.0,"fee":0.0,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":8.750889276952e20}},{"id":"8087953700","receipt_id":"GqJK4pgJvWeS5XwgsMo1UnsP83P5UyVUcEMQ5hw9BJn1","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"J387oME8DjLvhDNev9pFcJGsgNxec4dwRLpW5ZCTyFKi","block_height":127440408,"block_timestamp":1725647387102718500},"receipt_outcome":{"gas_burnt":2843223556824.0,"tokens_burnt":2.843223556824e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BaREECpeDReR8A3jkG1i93aQ6XVoXEFfBDEFzgp4ktsC","included_in_block_hash":"tbKqF8harTnraifKp2B8246aegKikBbC2oKLq48x4dk","block_timestamp":"1725647385997693248","block":{"block_height":127440407},"receipt_conversion_tokens_burnt":"32122020534000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.843223556824e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"4500000\", \"token_id\": \"usdt.tether-token.near\", \"receiver_id\": \"devdao.sputnik-dao.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.164443762164e20}},{"id":"8087959823","receipt_id":"8E1T8fQS8pQff61WQ6Y7uNnRtAoPAcbZW8orF56n6Scw","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"1iw7pjEXfLDptrMsnzWvqgSK9hTHWsBREf7rVMiFHvn","block_height":127440426,"block_timestamp":1725647409601936100},"receipt_outcome":{"gas_burnt":3813754185461.0,"tokens_burnt":3.8137541854610004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7tWbgeNNJRYmZg5TiXTFcnDTokJ37jTJSzwf8GWQ75cz","included_in_block_hash":"9oer9iS6HZJNeNGVNwnwwaVe3Z9UgGehTRqSmAHbHeHu","block_timestamp":"1725647408220918030","block":{"block_height":127440425},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.8137541854610004e20,"args":"{\"id\": 62, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0012166143608e21}},{"id":"8087960385","receipt_id":"H4ZHSed1vFibnR2iCN3K81B7vPAKYLWfbtYog9VVSsAp","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"usdt.tether-token.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ExjHhGcPs82PU3kJAKvp7DxYS8bKAi4wZxhgLPBL94mF","block_height":127440427,"block_timestamp":1725647410987446300},"receipt_outcome":{"gas_burnt":2546268977779.0,"tokens_burnt":2.546268977779e20,"executor_account_id":"usdt.tether-token.near","status":true},"transaction_hash":"7tWbgeNNJRYmZg5TiXTFcnDTokJ37jTJSzwf8GWQ75cz","included_in_block_hash":"9oer9iS6HZJNeNGVNwnwwaVe3Z9UgGehTRqSmAHbHeHu","block_timestamp":"1725647408220918030","block":{"block_height":127440425},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer","deposit":1.0,"fee":2.546268977779e20,"args":"{\"memo\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\", \"amount\": \"4500000\", \"receiver_id\": \"devdao.sputnik-dao.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0012166143608e21}},{"id":"8087960389","receipt_id":"CTj6y9prkbVSw1dv34vx5yqvxWkxbzeHK2guNdRAEHCS","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ExjHhGcPs82PU3kJAKvp7DxYS8bKAi4wZxhgLPBL94mF","block_height":127440427,"block_timestamp":1725647410987446300},"receipt_outcome":{"gas_burnt":3118802834408.0,"tokens_burnt":3.118802834408e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7tWbgeNNJRYmZg5TiXTFcnDTokJ37jTJSzwf8GWQ75cz","included_in_block_hash":"9oer9iS6HZJNeNGVNwnwwaVe3Z9UgGehTRqSmAHbHeHu","block_timestamp":"1725647408220918030","block":{"block_height":127440425},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.118802834408e20,"args":"{\"proposal_id\": 62}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0012166143608e21}},{"id":"8087961147","receipt_id":"AqUu4cfd1f6BDaLNYcgWTHohXN34pyna42pcsiPhvYXo","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9fAgr39o7R8xFCJjad7eBRS4B1mM4Fz5xPEzvtb1womj","block_height":127440429,"block_timestamp":1725647413546597400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"7tWbgeNNJRYmZg5TiXTFcnDTokJ37jTJSzwf8GWQ75cz","included_in_block_hash":"9oer9iS6HZJNeNGVNwnwwaVe3Z9UgGehTRqSmAHbHeHu","block_timestamp":"1725647408220918030","block":{"block_height":127440425},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0012166143608e21}},{"id":"8087986126","receipt_id":"2PrXKxwdyohfzNfGtVfvdiNKyJ4xrESHQAfif82hfcN7","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9LVQyxT8fjfhfHqyoKg8RP9tC6pX8VxJsCzspVKpbcvB","block_height":127440507,"block_timestamp":1725647505372579600},"receipt_outcome":{"gas_burnt":2846868167592.0,"tokens_burnt":2.846868167592e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"6T25cd6g1hD3W8q7kWm6n3xoPKogG2dgu3nQabxQNhhc","included_in_block_hash":"8WSCaADpqqpwVzyCiLLhz9jJRYtrTjyULMfMpKofwud8","block_timestamp":"1725647504325924175","block":{"block_height":127440506},"receipt_conversion_tokens_burnt":"32322292137000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.846868167592e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1500000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"devdao.sputnik-dao.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.170091088962e20}},{"id":"8087991778","receipt_id":"8iiWsSbNGbinqTrF1UGkfxvK1DWGDQnduhktYntL11fy","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BhfE5n9yGDeByQT9pg9r4TQNizgc3TgusJs94WmiJGMv","block_height":127440526,"block_timestamp":1725647526857539300},"receipt_outcome":{"gas_burnt":3832322423885.0,"tokens_burnt":3.832322423885e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2zVLf3kATuGg79CjsSgnFmWSeZhF8vEVHNX6byoLBuEL","included_in_block_hash":"7s8zck8Keg2sKSSzpHtFApT6P78ngzp4b7umuYVGwWes","block_timestamp":"1725647525576524698","block":{"block_height":127440525},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.832322423885e20,"args":"{\"id\": 63, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0217783065054e21}},{"id":"8087992254","receipt_id":"H5tWKusNSDhZhJ7K9X7tkqEbiyLC9nysJfoMvpoY8P4d","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","receipt_kind":"ACTION","receipt_block":{"block_hash":"AXSumUG5bHy3LCdQVeeJVhaTGntKwPaEESPCmugBNjtQ","block_height":127440527,"block_timestamp":1725647528093097500},"receipt_outcome":{"gas_burnt":2728267824593.0,"tokens_burnt":2.728267824593e20,"executor_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","status":true},"transaction_hash":"2zVLf3kATuGg79CjsSgnFmWSeZhF8vEVHNX6byoLBuEL","included_in_block_hash":"7s8zck8Keg2sKSSzpHtFApT6P78ngzp4b7umuYVGwWes","block_timestamp":"1725647525576524698","block":{"block_height":127440525},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer","deposit":1.0,"fee":2.728267824593e20,"args":"{\"memo\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Transfer tokens to devhub treasury\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\", \"amount\": \"1500000\", \"receiver_id\": \"devdao.sputnik-dao.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0217783065054e21}},{"id":"8087992255","receipt_id":"AR4fNvGz8YP8629MeycWhsbcKPiJF1oZne2ogkJtooxw","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"AXSumUG5bHy3LCdQVeeJVhaTGntKwPaEESPCmugBNjtQ","block_height":127440527,"block_timestamp":1725647528093097500},"receipt_outcome":{"gas_burnt":3123852670616.0,"tokens_burnt":3.123852670616e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2zVLf3kATuGg79CjsSgnFmWSeZhF8vEVHNX6byoLBuEL","included_in_block_hash":"7s8zck8Keg2sKSSzpHtFApT6P78ngzp4b7umuYVGwWes","block_timestamp":"1725647525576524698","block":{"block_height":127440525},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.123852670616e20,"args":"{\"proposal_id\": 63}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0217783065054e21}},{"id":"8087993073","receipt_id":"TwFckGzNDNcnT7zRGebMtzSpKPGuBCUmAKu3PsR1Au1","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"AGDEUTu2ThU5whzStwBAs3dnUpR27FcmQwuRrFuXsbkw","block_height":127440529,"block_timestamp":1725647530080474000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"2zVLf3kATuGg79CjsSgnFmWSeZhF8vEVHNX6byoLBuEL","included_in_block_hash":"7s8zck8Keg2sKSSzpHtFApT6P78ngzp4b7umuYVGwWes","block_timestamp":"1725647525576524698","block":{"block_height":127440525},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0217783065054e21}},{"id":"8380520279","receipt_id":"9wgKZFcMeqFtmrmMKM7so7agtMUfuMaQAusNUbspvKkh","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BLa1dZRwZLjKdeJ9nC8SAVu8J322V5GcjNTqpbjhgU8M","block_height":128200800,"block_timestamp":1726506108864101000},"receipt_outcome":{"gas_burnt":2259093897233.0,"tokens_burnt":2.259093897233e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"8ftd4mF5yRVtgrerj5pRn7MDmpKJp5BWksCo8jhGTqrd","included_in_block_hash":"B6zcAqDCQ2pcBJezRMHKb5QmFkgCMzZ2esgxgLgiaQQh","block_timestamp":"1726506107711586377","block":{"block_height":128200799},"receipt_conversion_tokens_burnt":"32045726590000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":2.259093897233e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicyUpdateParameters\": {\"parameters\": {\"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update Parameters\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.579551163133e20}},{"id":"8380581049","receipt_id":"9JyiXK1eekwwUcoAhWCT2dwdr1Qb48BQJs7ZgtwueU9P","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BmEkUwoiptLzLxFo9LBz7Q3exLGZ5nkQALP4p9ysNa42","block_height":128200987,"block_timestamp":1726506314980726300},"receipt_outcome":{"gas_burnt":4507855882586.0,"tokens_burnt":4.507855882586e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"83tZC2dmbYnrsr8BvuGCABKwaAREd3cA4Vsn5oMCGCLH","included_in_block_hash":"bCrJmvct9bZTbhYxSizi98E89bZUwpmuwEVHcyQVcdL","block_timestamp":"1726506313833794549","block":{"block_height":128200986},"receipt_conversion_tokens_burnt":"48782710555000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":1e23,"fee":4.507855882586e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"treasurytestuserledger.near\", \"megha19.near\", \"petersalomonsen.near\", \"test03.near\", \"test05.near\", \"tfdevhub.near\", \"theori.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":1e23},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.995682988136e20}},{"id":"8380633128","receipt_id":"BtNornCAou9hUiMp6WcSQTYaVA9FrVPBHGnR781sa9V4","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4Ztnsd364u3pL4URShT9AU5E3wZZxgcyhYvyZhkAeZ3u","block_height":128201130,"block_timestamp":1726506482830661400},"receipt_outcome":{"gas_burnt":4812565357637.0,"tokens_burnt":4.812565357637e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5kQeskXf5ekxxVKSDqk9CUNKGS4URwtRpJwPK6QxJgeD","included_in_block_hash":"EvQ1pfReNoLmPmRnJ5BiUpjxNhpmSqnRXL849AnDmnJ7","block_timestamp":"1726506481784166187","block":{"block_height":128201129},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.812565357637e20,"args":"{\"id\": 64, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.3459055035969995e20}},{"id":"8380633515","receipt_id":"Cbc3n5qrCVso3ZZoMHkT6GJNJJFjrzmKEGnYEWGdENU3","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"xb5YKHonoBocdfqXDkcgcQtG7CztBPRShp6ZHiD8EwK","block_height":128201131,"block_timestamp":1726506483881832700},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"5kQeskXf5ekxxVKSDqk9CUNKGS4URwtRpJwPK6QxJgeD","included_in_block_hash":"EvQ1pfReNoLmPmRnJ5BiUpjxNhpmSqnRXL849AnDmnJ7","block_timestamp":"1726506481784166187","block":{"block_height":128201129},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e23,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.3459055035969995e20}},{"id":"8380664153","receipt_id":"FUuHokim2KsAUyFrXMGVg3TAK63qB44SsY2tdnWbRmNn","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8FwUwRxMWeSKDxK88KACrPYoF2oDzL9he9XT2SYTm8W6","block_height":128201177,"block_timestamp":1726506536342041900},"receipt_outcome":{"gas_burnt":1613582239357.0,"tokens_burnt":1.613582239357e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"Bjvmo7mdJax4wKNfHM2qXqyrj5qAAgfHWi3bJs5VNfqz","included_in_block_hash":"5gaDSQmmyEe1A1xneTawcmfAbwPwMMR7QXifdiuetq2t","block_timestamp":"1726506535130315694","block":{"block_height":128201176},"receipt_conversion_tokens_burnt":"32169704249000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.613582239357e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"receiverId\": \"wrap.near\", \"functionCalls\": [{\"gas\": \"30000000000000\", \"args\": {\"account_id\": \"testing-astradao.sputnik-dao.near\", \"registration_only\": true}, \"amount\": \"0.00125\", \"methodName\": \"storage_deposit\"}]}}, \"description\": \"{\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":1.935279281847e20}},{"id":"8382977206","receipt_id":"4MhWb9K4kgjqcUh1pEjoU5L9JwY1UvE6T2GGz7cHHVMX","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9XB7YSPtJ5xk2HTubMqKtarzqJwa4Dip8FnAspySS141","block_height":128206358,"block_timestamp":1726512378684487200},"receipt_outcome":{"gas_burnt":1775180118193.0,"tokens_burnt":1.775180118193e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"PPCL3p7CLhQEkYGXF2ZTqJtsMxNhqbFGC85sKns4X85","included_in_block_hash":"C4AMoW7X84NY1xdwbTuDT4g3haFmdvAyuJ7GPTMUibDy","block_timestamp":"1726512377656785789","block":{"block_height":128206357},"receipt_conversion_tokens_burnt":"34859065775000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.775180118193e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"180000000000000\", \"args\": \"eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjQxNzksXCJ0b2tlbl9pblwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwidG9rZW5fb3V0XCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJhbW91bnRfaW5cIjpcIjEwMDAwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiOTk5NzAzNlwifV19In0=\", \"deposit\": \"0.000000000000000000000001\", \"method_name\": \"ft_transfer_call\"}], \"receiver_id\": \"usdt.tether-token.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"10\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\\":0.001,\\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"9.99713\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.1237707759430002e20}},{"id":"8383007011","receipt_id":"GmY2ocKqqtZUvo9PV88RkVwjRSuUfgRDbqMas6kQ9skf","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"AKFaig1Q5ZL5sgLiR32i78P4kkR5NhQjcPWdf8KXhdg4","block_height":128206442,"block_timestamp":1726512472982439700},"receipt_outcome":{"gas_burnt":1775180118193.0,"tokens_burnt":1.775180118193e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"H3qo8C38brboKLJxH8PvLqEqrT4sgCaq44kEqHz73gt5","included_in_block_hash":"9CQkqz1bKpwnZUkyi7sJM5xvV56HegD3PTaQtxymc4KE","block_timestamp":"1726512472023145304","block":{"block_height":128206441},"receipt_conversion_tokens_burnt":"34859065775000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.775180118193e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"180000000000000\", \"args\": \"eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjQxNzksXCJ0b2tlbl9pblwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwidG9rZW5fb3V0XCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJhbW91bnRfaW5cIjpcIjEwMDAwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiOTk5NzAzNlwifV19In0=\", \"deposit\": \"0.000000000000000000000001\", \"method_name\": \"ft_transfer_call\"}], \"receiver_id\": \"usdt.tether-token.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"10\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\\":0.001,\\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"9.99713\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.1237707759430002e20}},{"id":"8383196572","receipt_id":"DEjsqd5CcJDf7raKMQPoZcRKf1ivCF2CUnXm2APAciWy","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ARcUVTYUTEquF9KLw7A37ygagdkzrdWB7HWMXrQQXzKg","block_height":128206840,"block_timestamp":1726512917685046800},"receipt_outcome":{"gas_burnt":1767793763697.0,"tokens_burnt":1.767793763697e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"4mAzCZatdKFwXzYz9FbtKoRk4dLmanGEhR7rL1RSK4PT","included_in_block_hash":"LZpA3cuZeaniDsxKENgNsn1jSmtLaH3cLvGNEQtAUzE","block_timestamp":"1726512916732060954","block":{"block_height":128206839},"receipt_conversion_tokens_burnt":"35097484350000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.767793763697e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"180000000000000\", \"args\": \"eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjQxNzksXCJ0b2tlbl9pblwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwidG9rZW5fb3V0XCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJhbW91bnRfaW5cIjpcIjEwMDAwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiOTk5NzAzNlwifV19In0=\", \"deposit\": \"0.000000000000000000000001\", \"method_name\": \"ft_transfer_call\"}], \"receiver_id\": \"usdt.tether-token.near\"}}, \"description\": \"eyJpc0Fzc2V0RXhjaGFuZ2VUeG4iOnRydWUsIm5vdGVzIjpudWxsLCJ0b2tlbkluIjoidXNkdC50ZXRoZXItdG9rZW4ubmVhciIsInRva2VuT3V0IjoiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMSIsImFtb3VudEluIjoiMTAiLCJzbGlwcGFnZSI6MC4wMDEsImFtb3VudE91dCI6IjkuOTk3MTMifQ==\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.118768607197e20}},{"id":"8383272812","receipt_id":"9M9xyKAFUnrzkVM32fWeU6k6Zc4y4qGXahJvWAtf3Gxc","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"N3f14uvZRn2ht1PVYQsghQfusCUfFwbBYY4Y2ttHD8u","block_height":128206974,"block_timestamp":1726513066603958000},"receipt_outcome":{"gas_burnt":1776541593541.0,"tokens_burnt":1.776541593541e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"5eq7c7862GjKrEnb6GgDq7uTwkF8he8wj34NR3YAuz57","included_in_block_hash":"5m67NMGqTNGuKLjGexh3ndowg2AUSNwHpfiG5WWB888R","block_timestamp":"1726513065604944982","block":{"block_height":128206973},"receipt_conversion_tokens_burnt":"35316829439000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.776541593541e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"180000000000000\", \"args\": \"eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjQ1MTMsXCJ0b2tlbl9pblwiOlwiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMVwiLFwidG9rZW5fb3V0XCI6XCJ1c2R0LnRldGhlci10b2tlbi5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjEwMDAwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMTAwMDE3MzhcIn1dfSJ9\", \"deposit\": \"0.000000000000000000000001\", \"method_name\": \"ft_transfer_call\"}], \"receiver_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\"}}, \"description\": \"eyJpc0Fzc2V0RXhjaGFuZ2VUeG4iOnRydWUsIm5vdGVzIjpudWxsLCJ0b2tlbkluIjoiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMSIsInRva2VuT3V0IjoidXNkdC50ZXRoZXItdG9rZW4ubmVhciIsImFtb3VudEluIjoiMTAiLCJzbGlwcGFnZSI6IjAuMDAxIiwiYW1vdW50T3V0IjoiMTAuMDAxODMifQ==\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.129709887931e20}},{"id":"8401433796","receipt_id":"5RPWpLjayYgsdgGSUForgfmxXw83suCR3skw8p9N3nWN","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9iAS81rWaJVkGZKeCoB7NXNiYWP6Y53nMAQ6UhP2zPsC","block_height":128256770,"block_timestamp":1726568709776569300},"receipt_outcome":{"gas_burnt":1781915365221.0,"tokens_burnt":1.781915365221e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"CiGh3ozbcWBPQXi7spF58gPuqhM2E2am6HxupRR7bY8i","included_in_block_hash":"Ah9mtDmasTDj6wnXVLmKmNUZRGC4ttkQS3E2F1yBdJyZ","block_timestamp":"1726568707110490182","block":{"block_height":128256769},"receipt_conversion_tokens_burnt":"35040263892000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.781915365221e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"180000000000000\", \"args\": \"eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjM2ODksXCJ0b2tlbl9pblwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwidG9rZW5fb3V0XCI6XCJkYWMxN2Y5NThkMmVlNTIzYTIyMDYyMDY5OTQ1OTdjMTNkODMxZWM3LmZhY3RvcnkuYnJpZGdlLm5lYXJcIixcImFtb3VudF9pblwiOlwiMTAwMDAwMDBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIwXCJ9LHtcInBvb2xfaWRcIjo0MTc5LFwidG9rZW5faW5cIjpcImRhYzE3Zjk1OGQyZWU1MjNhMjIwNjIwNjk5NDU5N2MxM2Q4MzFlYzcuZmFjdG9yeS5icmlkZ2UubmVhclwiLFwidG9rZW5fb3V0XCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMTAwMDAxNzhcIn1dfSJ9\", \"deposit\": \"0.000000000000000000000001\", \"method_name\": \"ft_transfer_call\"}], \"receiver_id\": \"usdt.tether-token.near\"}}, \"description\": \"\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.132318004141e20}},{"id":"8401608357","receipt_id":"61CmeGpdyviVF3tWHKTjiAtGUxJAgEtceDTDfoE6eHhg","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GCuSGVkqtPtkzogtGsVopFXEqZbPYELVnjM3kWFum8kv","block_height":128257097,"block_timestamp":1726569114785052200},"receipt_outcome":{"gas_burnt":1775691625773.0,"tokens_burnt":1.775691625773e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"HND8QhdSNqfk4RBJPMP8xryUGQ9KcNxhW4mS5vVz2jNL","included_in_block_hash":"rSeTWKvsTky6w7JNY3aFVL3ZAVhr6XNGESkj7Cbpjqx","block_timestamp":"1726569113427819807","block":{"block_height":128257096},"receipt_conversion_tokens_burnt":"35297755953000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.775691625773e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"180000000000000\", \"args\": \"eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwMCIsIm1zZyI6IntcImZvcmNlXCI6MCxcImFjdGlvbnNcIjpbe1wicG9vbF9pZFwiOjQ1MTMsXCJ0b2tlbl9pblwiOlwiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMVwiLFwidG9rZW5fb3V0XCI6XCJ1c2R0LnRldGhlci10b2tlbi5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjEwMDAwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiOTk5OTQ3MFwifV19In0=\", \"deposit\": \"0.000000000000000000000001\", \"method_name\": \"ft_transfer_call\"}], \"receiver_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\"}}, \"description\": \"eyJpc0Fzc2V0RXhjaGFuZ2VUeG4iOnRydWUsIm5vdGVzIjpudWxsLCJ0b2tlbkluIjoiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMSIsInRva2VuT3V0IjoidXNkdC50ZXRoZXItdG9rZW4ubmVhciIsImFtb3VudEluIjoiMTAiLCJzbGlwcGFnZSI6IjAuMDAxIiwiYW1vdW50T3V0IjoiOS45OTk1NyJ9\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.1286691853030002e20}},{"id":"8401903442","receipt_id":"FkuKGU9rXC6sJ9sskKrmt7QBPyEYv76BYUMj5t8RMMX6","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7Vv3kbAiiGEQGGFoJPwTY5pWbfPST1qZTsU5jJ4g6urf","block_height":128257686,"block_timestamp":1726569874881737700},"receipt_outcome":{"gas_burnt":1688713774165.0,"tokens_burnt":1.688713774165e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"6wA3SdxCj8GmxgoPgpfNsPFZZxmV8TeEQ5zF2NgTWvRr","included_in_block_hash":"ksVQDfat6w64URK3GfnFtTFo4X4LNwdtbwNwe6mqS5B","block_timestamp":"1726569873516621635","block":{"block_height":128257685},"receipt_conversion_tokens_burnt":"33428554325000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.688713774165e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"180000000000000\", \"args\": \"\", \"deposit\": \"0.000000000000000000000001\", \"method_name\": \"ft_transfer_call\"}], \"receiver_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\"}}, \"description\": \"eyJpc0Fzc2V0RXhjaGFuZ2VUeG4iOnRydWUsIm5vdGVzIjpudWxsLCJ0b2tlbkluIjoiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMSIsInRva2VuT3V0IjoidXNkdC50ZXRoZXItdG9rZW4ubmVhciIsImFtb3VudEluIjoiMTAiLCJzbGlwcGFnZSI6IjAuMDAxIiwiYW1vdW50T3V0IjoiOS45OTk0NiJ9\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.022999317415e20}},{"id":"8402017958","receipt_id":"8S4bLdkYsQcRPKHHcAuaQhUkEKtBoUCF4CRWMegaM6cf","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"G1iitaQqSDGWtzvQCZAiBi8dGvAYwv4ngrrrtRtd1PVK","block_height":128257968,"block_timestamp":1726570230565839400},"receipt_outcome":{"gas_burnt":2954435006900.0,"tokens_burnt":2.9544350069e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3e6KsZ3Bt7ZLdLKSoBFpmvTFUfLPdn4RCLc1aBACtHGi","included_in_block_hash":"GkmNF6374bjtSnBoDMqKB4A2LyNMtQcRDnJV4m7KgZnT","block_timestamp":"1726570229290230539","block":{"block_height":128257967},"receipt_conversion_tokens_burnt":"34935359719000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.9544350069e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"180000000000000\", \"args\": \"eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAwIiwibXNnIjoie1wiZm9yY2VcIjowLFwiYWN0aW9uc1wiOlt7XCJwb29sX2lkXCI6NDUxMyxcInRva2VuX2luXCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJ0b2tlbl9vdXRcIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcImFtb3VudF9pblwiOlwiMTAwMDAwMFwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjk5OTg5NVwifV19In0=\", \"deposit\": \"1\", \"method_name\": \"ft_transfer_call\"}], \"receiver_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0.001\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0.99990\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.30378860409e20}},{"id":"8402617890","receipt_id":"ATfPkxkhb42dLZM3VLg7s8xMQ4FbPq9MTTQgPfBjj2m4","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EYZPPPsSw5a2kFUma1oYuDw5iihJ8r6jaTjkrzBNzL5k","block_height":128259337,"block_timestamp":1726571947525849300},"receipt_outcome":{"gas_burnt":2923194191368.0,"tokens_burnt":2.923194191368e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GqYj4MFGY6wrQEsfcrsZxi4jje5HyfUwy64tFaDRQ3x7","included_in_block_hash":"HJEjVCQpK1bTyt6nZ44khqDjorq6fsLqyW8ATokSDVTK","block_timestamp":"1726571946225467834","block":{"block_height":128259336},"receipt_conversion_tokens_burnt":"34787540202500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.923194191368e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"180000000000000\", \"args\": \"eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIzMDAwMDAiLCJtc2ciOiJ7XCJmb3JjZVwiOjAsXCJhY3Rpb25zXCI6W3tcInBvb2xfaWRcIjo0MTc5LFwidG9rZW5faW5cIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcInRva2VuX291dFwiOlwiMTcyMDg2MjhmODRmNWQ2YWQzM2YwZGEzYmJiZWIyN2ZmY2IzOThlYWM1MDFhMzFiZDZhZDIwMTFlMzYxMzNhMVwiLFwiYW1vdW50X2luXCI6XCIzMDAwMDBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIyOTk5MTFcIn1dfSJ9\", \"deposit\": \"1\", \"method_name\": \"ft_transfer_call\"}], \"receiver_id\": \"usdt.tether-token.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"this is the notes\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0.3\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0.29991\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.271069593393e20}},{"id":"8402665662","receipt_id":"BdkePMbWkbi3AAs5N15n9L5d6Lb95sGdyFtF4RccneY2","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BorLsh3Js8my47DDzr7exNn4a2YiuC2rrP7sq7zG3Vzw","block_height":128259401,"block_timestamp":1726572027508473600},"receipt_outcome":{"gas_burnt":3937353989745.0,"tokens_burnt":3.937353989745e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9PMze99KnxCZy8dUo1PtcgP7WPaGy9X9FhqC4g3Mrhbj","included_in_block_hash":"F6RMWoxcbWUhHM4RcmujzUNJTnHzWeHKZHxLTqVe9Pqh","block_timestamp":"1726572026198452653","block":{"block_height":128259400},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.937353989745e20,"args":"{\"id\": 66, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.7852485840621e21}},{"id":"8402666859","receipt_id":"2Pmxi4bNg6MS2UFMYfDf7fRwFBsq1zAqVqH8CtwRU975","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"usdt.tether-token.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3XGuC8HEt7LPYqBpKjHqEde1NfXyWNvxDBLP2eMmg6pi","block_height":128259402,"block_timestamp":1726572028836610600},"receipt_outcome":{"gas_burnt":3279465869396.0,"tokens_burnt":3.2794658693959995e20,"executor_account_id":"usdt.tether-token.near","status":true},"transaction_hash":"9PMze99KnxCZy8dUo1PtcgP7WPaGy9X9FhqC4g3Mrhbj","included_in_block_hash":"F6RMWoxcbWUhHM4RcmujzUNJTnHzWeHKZHxLTqVe9Pqh","block_timestamp":"1726572026198452653","block":{"block_height":128259400},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer_call","deposit":1.0,"fee":3.2794658693959995e20,"args":"{\"msg\": \"{\\\\\\\\\\\\\\\"force\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"actions\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4179,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"300000\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"299911\\\\\\\\\\\\\\\"}]}\", \"amount\": \"300000\", \"receiver_id\": \"v2.ref-finance.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.7852485840621e21}},{"id":"8402666864","receipt_id":"8LhaVhBBhupGs2hJq7wgCNCRydB8P5WEKHLT6r1n87ga","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3XGuC8HEt7LPYqBpKjHqEde1NfXyWNvxDBLP2eMmg6pi","block_height":128259402,"block_timestamp":1726572028836610600},"receipt_outcome":{"gas_burnt":3259876116704.0,"tokens_burnt":3.259876116704e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9PMze99KnxCZy8dUo1PtcgP7WPaGy9X9FhqC4g3Mrhbj","included_in_block_hash":"F6RMWoxcbWUhHM4RcmujzUNJTnHzWeHKZHxLTqVe9Pqh","block_timestamp":"1726572026198452653","block":{"block_height":128259400},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.259876116704e20,"args":"{\"proposal_id\": 66}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.7852485840621e21}},{"id":"8402671052","receipt_id":"8uqB6LsfgtLP8fdsv6HaHHTKg3avy2sT7eL9ig4FMhUc","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2zLodUeVYJKoaJ2DRHLRtFkibZAp7Jubpxn962aKdGpf","block_height":128259406,"block_timestamp":1726572034112529200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"9PMze99KnxCZy8dUo1PtcgP7WPaGy9X9FhqC4g3Mrhbj","included_in_block_hash":"F6RMWoxcbWUhHM4RcmujzUNJTnHzWeHKZHxLTqVe9Pqh","block_timestamp":"1726572026198452653","block":{"block_height":128259400},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":2.7852485840621e21}},{"id":"8403816523","receipt_id":"7aGYtB17kecWQM1SQ5RPh9SF2DAqt4ALJw8zun8WJdZP","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FrDpowURRCVW3rouhWCuGLHWQNqsh9URxZfnJWr6q6FB","block_height":128261980,"block_timestamp":1726575309502072800},"receipt_outcome":{"gas_burnt":3167370998208.0,"tokens_burnt":3.167370998208e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GQtf1WDReJ9YRVZ95RM5senFNczxyX1sGHjzfL5A4RsZ","included_in_block_hash":"DbaVfc9BKECkuCc9HAA8TRMfCzRHuZcBXtzH4iKsfiER","block_timestamp":"1726575308192657171","block":{"block_height":128261979},"receipt_conversion_tokens_burnt":"42936687096000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.167370998208e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"180000000000000\", \"args\": \"eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIyMDAwMDAiLCJtc2ciOiJ7XCJmb3JjZVwiOjAsXCJhY3Rpb25zXCI6W3tcInBvb2xfaWRcIjo1MTE4LFwidG9rZW5faW5cIjpcIjE3MjA4NjI4Zjg0ZjVkNmFkMzNmMGRhM2JiYmViMjdmZmNiMzk4ZWFjNTAxYTMxYmQ2YWQyMDExZTM2MTMzYTFcIixcInRva2VuX291dFwiOlwiNDM4ZTQ4ZWQ0Y2U2YmVlY2Y1MDNkNDNiOWRiZDNjMzBkNTE2ZTdmZC5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjIwMDAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6NDk3NCxcInRva2VuX2luXCI6XCI0MzhlNDhlZDRjZTZiZWVjZjUwM2Q0M2I5ZGJkM2MzMGQ1MTZlN2ZkLmZhY3RvcnkuYnJpZGdlLm5lYXJcIixcInRva2VuX291dFwiOlwid3JhcC5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIwXCJ9LHtcInBvb2xfaWRcIjozNzE2LFwidG9rZW5faW5cIjpcIndyYXAubmVhclwiLFwidG9rZW5fb3V0XCI6XCJ1c2R0LnRldGhlci10b2tlbi5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIxOTkxMVwifSx7XCJwb29sX2lkXCI6NTExOCxcInRva2VuX2luXCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJ0b2tlbl9vdXRcIjpcIjQzOGU0OGVkNGNlNmJlZWNmNTAzZDQzYjlkYmQzYzMwZDUxNmU3ZmQuZmFjdG9yeS5icmlkZ2UubmVhclwiLFwiYW1vdW50X2luXCI6XCIxMDAwMFwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjBcIn0se1wicG9vbF9pZFwiOjQ5NzQsXCJ0b2tlbl9pblwiOlwiNDM4ZTQ4ZWQ0Y2U2YmVlY2Y1MDNkNDNiOWRiZDNjMzBkNTE2ZTdmZC5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJ0b2tlbl9vdXRcIjpcIndyYXAubmVhclwiLFwiYW1vdW50X2luXCI6XCIwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6Mzg3OSxcInRva2VuX2luXCI6XCJ3cmFwLm5lYXJcIixcInRva2VuX291dFwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwiYW1vdW50X2luXCI6XCIwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiOTkwMFwifSx7XCJwb29sX2lkXCI6NDUxMyxcInRva2VuX2luXCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJ0b2tlbl9vdXRcIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcImFtb3VudF9pblwiOlwiOTAwMDBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCI4OTA4OFwifSx7XCJwb29sX2lkXCI6NDE3OSxcInRva2VuX2luXCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJ0b2tlbl9vdXRcIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcImFtb3VudF9pblwiOlwiODAwMDBcIixcIm1pbl9hbW91bnRfb3V0XCI6XCI3OTE5MVwifV19In0=\", \"deposit\": \"1\", \"method_name\": \"ft_transfer_call\"}], \"receiver_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0.2\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0.20009\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.596737869168e20}},{"id":"8403872352","receipt_id":"968brUo1NGES5tegFT3DRTXq5ob4MdXJDZT67Uko7zE7","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Axe1VffAkxmkAE4UcCMzEsbKSjRze4C8p5HYZ2BAbmmi","block_height":128262153,"block_timestamp":1726575533144744400},"receipt_outcome":{"gas_burnt":4195238042989.0,"tokens_burnt":4.195238042989e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FuUue5EH73MqbCMdtmNndefv1oHREYKvfCwSEYoyrzKz","included_in_block_hash":"J5ae4wLNDEzMhyKR8RHdXWR8RcfzgMbTA3ey5bxufdBy","block_timestamp":"1726575531898946741","block":{"block_height":128262152},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.195238042989e20,"args":"{\"id\": 67, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.9808861933319e21}},{"id":"8403872723","receipt_id":"5oKHB2223n6usaWNEdbYqRjFYJLewLpJR6LYZjMQLrHP","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","receipt_kind":"ACTION","receipt_block":{"block_hash":"9DsbBfyQKiBnRQKqKrjK5xoyod3xdnQq4GNcPoYkZrUw","block_height":128262154,"block_timestamp":1726575534436340200},"receipt_outcome":{"gas_burnt":3778988484630.0,"tokens_burnt":3.7789884846300004e20,"executor_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","status":true},"transaction_hash":"FuUue5EH73MqbCMdtmNndefv1oHREYKvfCwSEYoyrzKz","included_in_block_hash":"J5ae4wLNDEzMhyKR8RHdXWR8RcfzgMbTA3ey5bxufdBy","block_timestamp":"1726575531898946741","block":{"block_height":128262152},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer_call","deposit":1.0,"fee":3.7789884846300004e20,"args":"{\"msg\": \"{\\\\\\\\\\\\\\\"force\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"actions\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":5118,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"20000\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4974,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":3716,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"19911\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":5118,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"10000\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4974,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":3879,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"9900\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4513,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"90000\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"89088\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4179,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"80000\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"79191\\\\\\\\\\\\\\\"}]}\", \"amount\": \"200000\", \"receiver_id\": \"v2.ref-finance.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.9808861933319e21}},{"id":"8403872727","receipt_id":"7s4A9U4db1XRNcPCKk87GeLCN5p65oXLAysKKou9kW8m","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9DsbBfyQKiBnRQKqKrjK5xoyod3xdnQq4GNcPoYkZrUw","block_height":128262154,"block_timestamp":1726575534436340200},"receipt_outcome":{"gas_burnt":3346042192034.0,"tokens_burnt":3.346042192034e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FuUue5EH73MqbCMdtmNndefv1oHREYKvfCwSEYoyrzKz","included_in_block_hash":"J5ae4wLNDEzMhyKR8RHdXWR8RcfzgMbTA3ey5bxufdBy","block_timestamp":"1726575531898946741","block":{"block_height":128262152},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.346042192034e20,"args":"{\"proposal_id\": 67}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.9808861933319e21}},{"id":"8403873931","receipt_id":"6zaYKJ3L9fmjQrVtuaXu1gEovtBu51FQFno6ZLvAiC4p","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4AZjoinx8GvD2U8dQ6igt19iBNR4t5p7qegyBPyrkHZ5","block_height":128262159,"block_timestamp":1726575539938201000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"FuUue5EH73MqbCMdtmNndefv1oHREYKvfCwSEYoyrzKz","included_in_block_hash":"J5ae4wLNDEzMhyKR8RHdXWR8RcfzgMbTA3ey5bxufdBy","block_timestamp":"1726575531898946741","block":{"block_height":128262152},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.9808861933319e21}},{"id":"8433720001","receipt_id":"4kSdPzgn7Md1skHMTb5FBvEbnwLWYZ1PRwSqe8rPJtrJ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"CputmdJ5Zf3cpkYDGXMNvGsPvM3VqdVBqwmozHgsPCFT","block_height":128334684,"block_timestamp":1726660371233004800},"receipt_outcome":{"gas_burnt":3308586991588.0,"tokens_burnt":3.308586991588e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GwBvyFTtNHA5b9PYYgYofDWU64hm5irMafdLtqZKDMGg","included_in_block_hash":"9S3Rf7TXyEyytnjoiNR3ftYKQJmhkhsJAQ71fUmmPoEz","block_timestamp":"1726660369890204336","block":{"block_height":128334683},"receipt_conversion_tokens_burnt":"47061328443500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.308586991588e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"180000000000000\", \"args\": \"eyJyZWNlaXZlcl9pZCI6InYyLnJlZi1maW5hbmNlLm5lYXIiLCJhbW91bnQiOiIxMDAwMDAiLCJtc2ciOiJ7XCJmb3JjZVwiOjAsXCJhY3Rpb25zXCI6W3tcInBvb2xfaWRcIjo1MTE4LFwidG9rZW5faW5cIjpcIjE3MjA4NjI4Zjg0ZjVkNmFkMzNmMGRhM2JiYmViMjdmZmNiMzk4ZWFjNTAxYTMxYmQ2YWQyMDExZTM2MTMzYTFcIixcInRva2VuX291dFwiOlwiNDM4ZTQ4ZWQ0Y2U2YmVlY2Y1MDNkNDNiOWRiZDNjMzBkNTE2ZTdmZC5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjYyNTAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6NDY5NSxcInRva2VuX2luXCI6XCI0MzhlNDhlZDRjZTZiZWVjZjUwM2Q0M2I5ZGJkM2MzMGQ1MTZlN2ZkLmZhY3RvcnkuYnJpZGdlLm5lYXJcIixcInRva2VuX291dFwiOlwiZGFjMTdmOTU4ZDJlZTUyM2EyMjA2MjA2OTk0NTk3YzEzZDgzMWVjNy5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6MzY4OSxcInRva2VuX2luXCI6XCJkYWMxN2Y5NThkMmVlNTIzYTIyMDYyMDY5OTQ1OTdjMTNkODMxZWM3LmZhY3RvcnkuYnJpZGdlLm5lYXJcIixcInRva2VuX291dFwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjYyMTAwXCJ9LHtcInBvb2xfaWRcIjo1MTE4LFwidG9rZW5faW5cIjpcIjE3MjA4NjI4Zjg0ZjVkNmFkMzNmMGRhM2JiYmViMjdmZmNiMzk4ZWFjNTAxYTMxYmQ2YWQyMDExZTM2MTMzYTFcIixcInRva2VuX291dFwiOlwiNDM4ZTQ4ZWQ0Y2U2YmVlY2Y1MDNkNDNiOWRiZDNjMzBkNTE2ZTdmZC5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjEyNTAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6NDYxMSxcInRva2VuX2luXCI6XCI0MzhlNDhlZDRjZTZiZWVjZjUwM2Q0M2I5ZGJkM2MzMGQ1MTZlN2ZkLmZhY3RvcnkuYnJpZGdlLm5lYXJcIixcInRva2VuX291dFwiOlwibmVhcm52aWRpYS5uZWFyXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6NDYzNCxcInRva2VuX2luXCI6XCJuZWFybnZpZGlhLm5lYXJcIixcInRva2VuX291dFwiOlwidXNkdC50ZXRoZXItdG9rZW4ubmVhclwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjEyNDEzXCJ9LHtcInBvb2xfaWRcIjo0NTEyLFwidG9rZW5faW5cIjpcIjE3MjA4NjI4Zjg0ZjVkNmFkMzNmMGRhM2JiYmViMjdmZmNiMzk4ZWFjNTAxYTMxYmQ2YWQyMDExZTM2MTMzYTFcIixcInRva2VuX291dFwiOlwid3JhcC5uZWFyXCIsXCJhbW91bnRfaW5cIjpcIjEyNTAwXCIsXCJtaW5fYW1vdW50X291dFwiOlwiMFwifSx7XCJwb29sX2lkXCI6NDUzMCxcInRva2VuX2luXCI6XCJ3cmFwLm5lYXJcIixcInRva2VuX291dFwiOlwiYmVudGhlZG9nLm5lYXJcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIwXCJ9LHtcInBvb2xfaWRcIjo0Njc3LFwidG9rZW5faW5cIjpcImJlbnRoZWRvZy5uZWFyXCIsXCJ0b2tlbl9vdXRcIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIxMjQwNlwifSx7XCJwb29sX2lkXCI6NTExOCxcInRva2VuX2luXCI6XCIxNzIwODYyOGY4NGY1ZDZhZDMzZjBkYTNiYmJlYjI3ZmZjYjM5OGVhYzUwMWEzMWJkNmFkMjAxMWUzNjEzM2ExXCIsXCJ0b2tlbl9vdXRcIjpcIjQzOGU0OGVkNGNlNmJlZWNmNTAzZDQzYjlkYmQzYzMwZDUxNmU3ZmQuZmFjdG9yeS5icmlkZ2UubmVhclwiLFwiYW1vdW50X2luXCI6XCIxMjUwMFwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjBcIn0se1wicG9vbF9pZFwiOjQ1NDMsXCJ0b2tlbl9pblwiOlwiNDM4ZTQ4ZWQ0Y2U2YmVlY2Y1MDNkNDNiOWRiZDNjMzBkNTE2ZTdmZC5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJ0b2tlbl9vdXRcIjpcImRhYzE3Zjk1OGQyZWU1MjNhMjIwNjIwNjk5NDU5N2MxM2Q4MzFlYzcuZmFjdG9yeS5icmlkZ2UubmVhclwiLFwibWluX2Ftb3VudF9vdXRcIjpcIjBcIn0se1wicG9vbF9pZFwiOjM2ODksXCJ0b2tlbl9pblwiOlwiZGFjMTdmOTU4ZDJlZTUyM2EyMjA2MjA2OTk0NTk3YzEzZDgzMWVjNy5mYWN0b3J5LmJyaWRnZS5uZWFyXCIsXCJ0b2tlbl9vdXRcIjpcInVzZHQudGV0aGVyLXRva2VuLm5lYXJcIixcIm1pbl9hbW91bnRfb3V0XCI6XCIxMjM5NVwifV19In0=\", \"deposit\": \"1\", \"method_name\": \"ft_transfer_call\"}], \"receiver_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isAssetExchangeTxn\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"tokenIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"tokenOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amountIn\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0.1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"slippage\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amountOut\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0.10032\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.779200276023e20}},{"id":"8433767126","receipt_id":"7cBedcGVj16euEy9YyAeSUjUHpc4oWxyPU5KVMwZ73DM","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BTmeUBhjL4WcZv2fRyFrVGwyPw3e4cHt13pT9wW8BCNM","block_height":128334792,"block_timestamp":1726660498219905000},"receipt_outcome":{"gas_burnt":4252500120949.0,"tokens_burnt":4.252500120949e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"8LvE58dnVkZqY1gomw7McuM4zLFCaJHhfVVa2e1r8YYG","included_in_block_hash":"JCG4GiH8rMbGY7FiNA1hbQtTNjmUQj3qRRS7F5jmjRa6","block_timestamp":"1726660497060417944","block":{"block_height":128334791},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.252500120949e20,"args":"{\"id\": 68, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.1438691736727e21}},{"id":"8433768057","receipt_id":"CdX3Mm8VXTjG3Z1watHJ5Vceq1kbLhVuTZiSC4Y2dr6U","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","receipt_kind":"ACTION","receipt_block":{"block_hash":"Dgm6oAobpYwi4Z2MaFrfmFA6uyoqp6xsafbGHTdNbVZW","block_height":128334793,"block_timestamp":1726660499369182700},"receipt_outcome":{"gas_burnt":3882410888850.0,"tokens_burnt":3.88241088885e20,"executor_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","status":true},"transaction_hash":"8LvE58dnVkZqY1gomw7McuM4zLFCaJHhfVVa2e1r8YYG","included_in_block_hash":"JCG4GiH8rMbGY7FiNA1hbQtTNjmUQj3qRRS7F5jmjRa6","block_timestamp":"1726660497060417944","block":{"block_height":128334791},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer_call","deposit":1.0,"fee":3.88241088885e20,"args":"{\"msg\": \"{\\\\\\\\\\\\\\\"force\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"actions\\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":5118,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"62500\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4695,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"dac17f958d2ee523a2206206994597c13d831ec7.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":3689,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"dac17f958d2ee523a2206206994597c13d831ec7.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"62100\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":5118,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"12500\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4611,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"nearnvidia.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4634,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"nearnvidia.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"12413\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4512,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"12500\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4530,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"wrap.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"benthedog.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4677,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"benthedog.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"12406\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":5118,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"amount_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"12500\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":4543,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"438e48ed4ce6beecf503d43b9dbd3c30d516e7fd.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"dac17f958d2ee523a2206206994597c13d831ec7.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\\"pool_id\\\\\\\\\\\\\\\":3689,\\\\\\\\\\\\\\\"token_in\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"dac17f958d2ee523a2206206994597c13d831ec7.factory.bridge.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"token_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"usdt.tether-token.near\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"min_amount_out\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"12395\\\\\\\\\\\\\\\"}]}\", \"amount\": \"100000\", \"receiver_id\": \"v2.ref-finance.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.1438691736727e21}},{"id":"8433768061","receipt_id":"UYL36SjfBHayu6WuvhLthiX6KQaip1GWeuFTp52NQQX","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Dgm6oAobpYwi4Z2MaFrfmFA6uyoqp6xsafbGHTdNbVZW","block_height":128334793,"block_timestamp":1726660499369182700},"receipt_outcome":{"gas_burnt":3447433618040.0,"tokens_burnt":3.44743361804e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"8LvE58dnVkZqY1gomw7McuM4zLFCaJHhfVVa2e1r8YYG","included_in_block_hash":"JCG4GiH8rMbGY7FiNA1hbQtTNjmUQj3qRRS7F5jmjRa6","block_timestamp":"1726660497060417944","block":{"block_height":128334791},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.44743361804e20,"args":"{\"proposal_id\": 68}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.1438691736727e21}},{"id":"8433771425","receipt_id":"7sfB4x1VgC4zo8RK2Ws26oMF5J8gQBDd4wrBt7zrr9u9","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"51GyGDFzwUAW8pqEH78xFY86eRGcftoEdig3PcCQeU2C","block_height":128334797,"block_timestamp":1726660504035235000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"8LvE58dnVkZqY1gomw7McuM4zLFCaJHhfVVa2e1r8YYG","included_in_block_hash":"JCG4GiH8rMbGY7FiNA1hbQtTNjmUQj3qRRS7F5jmjRa6","block_timestamp":"1726660497060417944","block":{"block_height":128334791},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.1438691736727e21}},{"id":"8817043359","receipt_id":"6ezWQBa3qsJQCTRR5BkFcqwEFdyDnbZijWNhQtReWWuQ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8apYRpgWZyRdhGtVU52mrfMv4zzR4f5XfV48SYeYQ8FY","block_height":129299774,"block_timestamp":1727769816043542300},"receipt_outcome":{"gas_burnt":2888780013324.0,"tokens_burnt":2.8887800133240003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HbvHDycguVVSpH1NjqMjsQeVTsZY1UKNyWAwt1drnT5e","included_in_block_hash":"JDPo1h4khotWmoF1N275KWZoYFdTzbm8as1K6BXTmbUR","block_timestamp":"1727769814898184437","block":{"block_height":129299773},"receipt_conversion_tokens_burnt":"32751445572000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8887800133240003e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"800000000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"9bd73bc9ba6ff289e2deb597dd6fe83dc0056af7a2937d6dec119660ba0146a4\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Fin Ops 08/26/2024 - 08/30/2024\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Oversee that proposals flow thru the payment process efficiently. Continuously improve upon the process.\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":209}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.216294469044e20}},{"id":"8904810154","receipt_id":"ANShd28bV8Zk6GY5jufKP2RBA51RWckGgfpQEsLBdv4C","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GFUUck2NY2B6JGX5aHAHdwmV7KJ2PPzFKTzazqNqHHp7","block_height":129534496,"block_timestamp":1728032802028789000},"receipt_outcome":{"gas_burnt":1639433681489.0,"tokens_burnt":1.639433681489e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"9cVZiYprV3trttFMfc3y6jg6EvwnbAdTGqfaGqFqmfaT","included_in_block_hash":"pZQ5PbDGTzZu7QVfuLuELCzyhpTQEPJrU2yb6NAU7hg","block_timestamp":"1728032800840855039","block":{"block_height":129534495},"receipt_conversion_tokens_burnt":"32203082849500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.639433681489e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": {\"gas\": 200000000000000, \"args\": {}, \"deposit\": \"1000000000000000000000000\", \"method_name\": \"deposit_and_stake\"}, \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing NEAR staked tokens\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":1.961464509984e20}},{"id":"8904834902","receipt_id":"H6Xp1nhkm5XzpHzGNHykeEgdf5cUmPCZ8AzfSzaurCiP","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7Mbx3U3uNu7w2M7GiSdMC15xm4TSwCGgaCzfwoAihfsF","block_height":129534546,"block_timestamp":1728032858789898800},"receipt_outcome":{"gas_burnt":1637823365537.0,"tokens_burnt":1.637823365537e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"7Uj3n1eAGL8oZ7jNjNx4ifWQv5i1uDRt5JnavBcNc8Tq","included_in_block_hash":"8FKUnjMxBXfaYnCxcRpFFEack1yPHHeBXrNnnr7siHdu","block_timestamp":"1728032857652711177","block":{"block_height":129534545},"receipt_conversion_tokens_burnt":"32145862391500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.637823365537e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": {\"gas\": 200000000000000, \"args\": \"\", \"deposit\": \"1000000000000000000000000\", \"method_name\": \"deposit_and_stake\"}, \"receiver_id\": \"zavodil.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"testing NEAR staking\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":1.959281989452e20}},{"id":"8904880008","receipt_id":"D778j6moToQRaDvArbrkRrNY6qzTMk7qD63eTqqHxtk2","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8TXen38rtgC6LiJFetGFmz36jfMxCpaYizeMooFSvNWD","block_height":129534645,"block_timestamp":1728032967670921200},"receipt_outcome":{"gas_burnt":1672370566685.0,"tokens_burnt":1.672370566685e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"DARxwWtdEzEEKRFhGp2TiEaMEHZxiPNuaNhUDxu5LJW4","included_in_block_hash":"61NGXeuw8Jb9mAaq2FXiN4wsgbuUEBi48RdyPTzSLQ5v","block_timestamp":"1728032966702737264","block":{"block_height":129534644},"receipt_conversion_tokens_burnt":"32160167506000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.672370566685e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": 200000000000000, \"args\": \"\", \"deposit\": \"1000000000000000000000000\", \"method_name\": \"deposit_and_stake\"}], \"receiver_id\": \"zavodil.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing Stake Request\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":1.993972241745e20}},{"id":"8904890660","receipt_id":"65QoRdb8cYX2ms1WvqwTfks2dzD9e8H9pNB5PZhoAiyu","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6NFGFiAjTAfS9sBs4BejyUa6z7UevXumxcme5KWQmvmU","block_height":129534692,"block_timestamp":1728033017194722000},"receipt_outcome":{"gas_burnt":2931489797108.0,"tokens_burnt":2.9314897971079997e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2pWWDjGPf5n7QsT1mqDEgtXL1Yxv3FTQyL5upgZF7Tv8","included_in_block_hash":"rufb1kkCRKF3y2Yy9FAzPfSoGGLYYnFspGHwuxNxswf","block_timestamp":"1728033016160599120","block":{"block_height":129534691},"receipt_conversion_tokens_burnt":"32160167506000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.9314897971079997e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"\", \"deposit\": \"1000000000000000000000000\", \"method_name\": \"deposit_and_stake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing Stake\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.253091472168e20}},{"id":"8906332216","receipt_id":"AmNCpU9vcmPk3o2jofbNDyBCKamGC1xAZ1BFYmQxqcS3","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"G6zbVb6zUyoLt6MTEMynYnu64LkbceTQrQPmxbrRdK59","block_height":129538501,"block_timestamp":1728037187249498600},"receipt_outcome":{"gas_burnt":2698484610174.0,"tokens_burnt":2.6984846101740002e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"HukgW7TYgAh7qyeUf3BwEZyahxFkUgpXomQFxNUpFgwa","included_in_block_hash":"A1Q7u4ZkHgwnT4mxhL2mPvPDiExRSLLhFR8vyNJ5EsU2","block_timestamp":"1728037186225101040","block":{"block_height":129538500},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.6984846101740002e20,"args":"{\"id\": 70, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":3.0086421936339996e20}},{"id":"8906344972","receipt_id":"hjtiEXqnRk2F8scvAdrRp3n8TxC8GHVAcuic5vXsKMK","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4wxEUiyQFRYHYL9UPnnWGXnBfgUaUx1QQ1qGavR37LhF","block_height":129538545,"block_timestamp":1728037236318885000},"receipt_outcome":{"gas_burnt":3862193325449.0,"tokens_burnt":3.862193325449e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9wwxAdF48RmTQicP2irq8fCDvVqwtEL9AUgSroEvPPhS","included_in_block_hash":"EAZxNkaYVcCHKPXaPbVMWLypsVBg9Dg3QUXnj83PdyfY","block_timestamp":"1728037235108050335","block":{"block_height":129538544},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.862193325449e20,"args":"{\"id\": 70, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.3201643640798e21}},{"id":"8906345319","receipt_id":"22VL4pfwHGmeFgrTWqDQVnZFVSK6HVFVKDZVnCj3VFtC","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"astro-stakers.poolv1.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HRpy3U2HaH6UvJKMBRczJfwirxTfM119MXqBvGcTZxPa","block_height":129538546,"block_timestamp":1728037237358404900},"receipt_outcome":{"gas_burnt":3717157021823.0,"tokens_burnt":3.717157021823e20,"executor_account_id":"astro-stakers.poolv1.near","status":true},"transaction_hash":"9wwxAdF48RmTQicP2irq8fCDvVqwtEL9AUgSroEvPPhS","included_in_block_hash":"EAZxNkaYVcCHKPXaPbVMWLypsVBg9Dg3QUXnj83PdyfY","block_timestamp":"1728037235108050335","block":{"block_height":129538544},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"deposit_and_stake","deposit":1e24,"fee":3.717157021823e20,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.3201643640798e21}},{"id":"8906345324","receipt_id":"D11apbLT47h4fs5mwk5gJ9v4mK8LsEJ25HdnpGMHRcp2","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HRpy3U2HaH6UvJKMBRczJfwirxTfM119MXqBvGcTZxPa","block_height":129538546,"block_timestamp":1728037237358404900},"receipt_outcome":{"gas_burnt":3200987059568.0,"tokens_burnt":3.200987059568e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9wwxAdF48RmTQicP2irq8fCDvVqwtEL9AUgSroEvPPhS","included_in_block_hash":"EAZxNkaYVcCHKPXaPbVMWLypsVBg9Dg3QUXnj83PdyfY","block_timestamp":"1728037235108050335","block":{"block_height":129538544},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.200987059568e20,"args":"{\"proposal_id\": 70}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.3201643640798e21}},{"id":"8906345733","receipt_id":"FHs6KThY6ZsKMLmYyxCea4oLKgWS98NnyDpdSzMq2U8p","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BBQyCF2UmZFEwAcZxdQQherYrBzTfBvVHPbPsqwerFzZ","block_height":129538548,"block_timestamp":1728037239352034000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"9wwxAdF48RmTQicP2irq8fCDvVqwtEL9AUgSroEvPPhS","included_in_block_hash":"EAZxNkaYVcCHKPXaPbVMWLypsVBg9Dg3QUXnj83PdyfY","block_timestamp":"1728037235108050335","block":{"block_height":129538544},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.3201643640798e21}},{"id":"8937242113","receipt_id":"GTteAN6QVNYUnpxfcJBNLfV5h3CdRLi67YQaQi8XhK6U","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6yuaBefY78J6EjWjTj9XvB6MQzsJcSh9wEpaYCkpumMN","block_height":129619264,"block_timestamp":1728126260433022200},"receipt_outcome":{"gas_burnt":1673209327993.0,"tokens_burnt":1.6732093279929998e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"5wHoeLanFjMhQETsr4BxAwYZVF6RKR4E5hLYnst3xGwF","included_in_block_hash":"7BPRPQrGTVqtYpLVhVGQxRtcFbGQPtqm3XsRBCdoXRUR","block_timestamp":"1728126259240819771","block":{"block_height":129619263},"receipt_conversion_tokens_burnt":"32212619592500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.6732093279929998e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": 200000000000000, \"args\": \"eyJhbW91bnQiOiI1MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==\", \"deposit\": \"0\", \"method_name\": \"unstake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing \\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":1.9953355239180003e20}},{"id":"8937251240","receipt_id":"6LyiPTHrBr7tDqFZZeU8QHAPgJwGK1F2SJ3s7mbnfT7a","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"JCiQ1XK8KXLgghy5P1P9faYK9CvvLgP2dxUESjBoD8t2","block_height":129619294,"block_timestamp":1728126292733602300},"receipt_outcome":{"gas_burnt":2878572597700.0,"tokens_burnt":2.8785725976999998e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FAkkKAAo6ddbkY27RTGubXUUUxmbN2CqNpfTBqwsZBKf","included_in_block_hash":"5p7PRmExEsTFndqupgbsrJd6minrp2PysJin7YVbVzCM","block_timestamp":"1728126291678533139","block":{"block_height":129619293},"receipt_conversion_tokens_burnt":"32255534936000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8785725976999998e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJhbW91bnQiOiItMjAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMCJ9\", \"deposit\": \"0\", \"method_name\": \"unstake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"testing unstake\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.2011279470599995e20}},{"id":"8937339224","receipt_id":"Cai7FFJef74NQedks3rpH7uXdhXEEZvWbdprYmwmnmZK","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FX6B2RC26T2oyCKETxhHH7PbEVHjaWyQq9GA1vqhDwzq","block_height":129619527,"block_timestamp":1728126551355160600},"receipt_outcome":{"gas_burnt":2850748796800.0,"tokens_burnt":2.8507487968e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HMFEPCfMpJmm4Xkspkmd1qmjFL7aMC9SpsorEtKHqBFH","included_in_block_hash":"v5ZHHFquSqQQdQy2UG7dsrWr6Y5294ZnEsu7JDwN4Hq","block_timestamp":"1728126550250443223","block":{"block_height":129619526},"receipt_conversion_tokens_burnt":"32255534936000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8507487968e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJhbW91bnQiOiI1MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==\", \"deposit\": \"0\", \"method_name\": \"unstake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"testing unstake\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.17330414616e20}},{"id":"8937536923","receipt_id":"8ygKGckGXhv3ufQ4WnDDnuALmSuWA5JTt5yE43oioVaw","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2cTH7irZuaHMtkefjMT32pjUfvmd8CTUPpAmDV6zimkC","block_height":129620053,"block_timestamp":1728127124484624600},"receipt_outcome":{"gas_burnt":3814430136053.0,"tokens_burnt":3.8144301360530004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AEntDzfPQmebvqRrg3CNkxErYFWUi7t5VSALRoFZHmjp","included_in_block_hash":"5EaxMNR3xS6BKJY3FJ2uE8ZUfB2fXg8tVYBnLkY8Wuvf","block_timestamp":"1728127123398922174","block":{"block_height":129620052},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.8144301360530004e20,"args":"{\"id\": 72, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2442953968769e21}},{"id":"8937537179","receipt_id":"6aiZbkbBELd5FFKXQj8DK6NXGQMw2CzcyKpYHyj9HE77","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"astro-stakers.poolv1.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6yvbBVv5GJGbKhZgUkm2zkWWGMUH8H8NrEE7jFe1ArcV","block_height":129620054,"block_timestamp":1728127125350084400},"receipt_outcome":{"gas_burnt":3125149341044.0,"tokens_burnt":3.125149341044e20,"executor_account_id":"astro-stakers.poolv1.near","status":true},"transaction_hash":"AEntDzfPQmebvqRrg3CNkxErYFWUi7t5VSALRoFZHmjp","included_in_block_hash":"5EaxMNR3xS6BKJY3FJ2uE8ZUfB2fXg8tVYBnLkY8Wuvf","block_timestamp":"1728127123398922174","block":{"block_height":129620052},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"unstake","deposit":0.0,"fee":3.125149341044e20,"args":"{\"amount\": \"500000000000000000000000\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2442953968769e21}},{"id":"8937537183","receipt_id":"G6c4qnFMRTEQuUkw81RqiZCw9ZT4py6P71GiSztr2Knj","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6yvbBVv5GJGbKhZgUkm2zkWWGMUH8H8NrEE7jFe1ArcV","block_height":129620054,"block_timestamp":1728127125350084400},"receipt_outcome":{"gas_burnt":3151178037344.0,"tokens_burnt":3.151178037344e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AEntDzfPQmebvqRrg3CNkxErYFWUi7t5VSALRoFZHmjp","included_in_block_hash":"5EaxMNR3xS6BKJY3FJ2uE8ZUfB2fXg8tVYBnLkY8Wuvf","block_timestamp":"1728127123398922174","block":{"block_height":129620052},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.151178037344e20,"args":"{\"proposal_id\": 72}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2442953968769e21}},{"id":"8937537619","receipt_id":"7RKwAaXjKT3jvw3GwQuUaq63KztWQDF3pQ7c4Q7G33x1","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"86xkC8Rrf5t8t9Faxw4P17qB1Bh1RCC4zj7LR9HbPQXe","block_height":129620056,"block_timestamp":1728127127617511200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"AEntDzfPQmebvqRrg3CNkxErYFWUi7t5VSALRoFZHmjp","included_in_block_hash":"5EaxMNR3xS6BKJY3FJ2uE8ZUfB2fXg8tVYBnLkY8Wuvf","block_timestamp":"1728127123398922174","block":{"block_height":129620052},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2442953968769e21}},{"id":"9034842102","receipt_id":"9FEcMry8g9C6nHoWfgF927cwG1Q1Zu1nWULAeNRoYFTk","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6iyepA9RRDnS1waqCrjewUHKeLxwcpER58tWR5qS4woQ","block_height":129849233,"block_timestamp":1728384666188444200},"receipt_outcome":{"gas_burnt":2932014697912.0,"tokens_burnt":2.932014697912e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HoHToSWC2Tw8bzK6cDaZpW4Serv4UtvpW5bbQNPzxz4U","included_in_block_hash":"wGeupmi6g686iJ6nDESdpJV7EWD8vMLa3PK68P69Yvy","block_timestamp":"1728384665120547723","block":{"block_height":129849232},"receipt_conversion_tokens_burnt":"32184009363500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.932014697912e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJhbW91bnQiOiIyMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==\", \"deposit\": \"0\", \"method_name\": \"unstake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.253854791547e20}},{"id":"9034856944","receipt_id":"FVELnfTc6hysc8VgmEpzFfCa5mWXxJXSYpExGprr5hzJ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HDD7JGBaVzMQFRGFyFvhtdoj2pVp7duvDfqRiKNTHPkL","block_height":129849268,"block_timestamp":1728384703884835800},"receipt_outcome":{"gas_burnt":3785106465845.0,"tokens_burnt":3.785106465845e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GVrXNrny6vXm33KEy8DHsZwgBjFzBh2aJTss4dsg6Nrz","included_in_block_hash":"DNu2M8Ytdbz71B6Qjy4pon5fENBNRZSpJNvEHjTG3aBS","block_timestamp":"1728384702737677009","block":{"block_height":129849267},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.785106465845e20,"args":"{\"id\": 73, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2463757283273e21}},{"id":"9034857559","receipt_id":"D9m7mDYpgc8F7Y7Ss7UDCT5ATG8AEf45Pxax8m23aAfp","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"astro-stakers.poolv1.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7j8a6Nv8LmZecgDhC2i5ttqansX4K1jJQ34ywCNTHUZi","block_height":129849269,"block_timestamp":1728384705170014500},"receipt_outcome":{"gas_burnt":3121661678360.0,"tokens_burnt":3.12166167836e20,"executor_account_id":"astro-stakers.poolv1.near","status":true},"transaction_hash":"GVrXNrny6vXm33KEy8DHsZwgBjFzBh2aJTss4dsg6Nrz","included_in_block_hash":"DNu2M8Ytdbz71B6Qjy4pon5fENBNRZSpJNvEHjTG3aBS","block_timestamp":"1728384702737677009","block":{"block_height":129849267},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"unstake","deposit":0.0,"fee":3.12166167836e20,"args":"{\"amount\": \"200000000000000000000000\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2463757283273e21}},{"id":"9034857567","receipt_id":"25fijC9gaipYvrTVjjVdFf3LcHkciMKBspHrG1YSYWPk","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7j8a6Nv8LmZecgDhC2i5ttqansX4K1jJQ34ywCNTHUZi","block_height":129849269,"block_timestamp":1728384705170014500},"receipt_outcome":{"gas_burnt":3204792684740.0,"tokens_burnt":3.20479268474e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GVrXNrny6vXm33KEy8DHsZwgBjFzBh2aJTss4dsg6Nrz","included_in_block_hash":"DNu2M8Ytdbz71B6Qjy4pon5fENBNRZSpJNvEHjTG3aBS","block_timestamp":"1728384702737677009","block":{"block_height":129849267},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.20479268474e20,"args":"{\"proposal_id\": 73}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2463757283273e21}},{"id":"9034858720","receipt_id":"BfvLnULTQih7BRapw7WCZBiaMUhFDJSJHW56DMHWbNvG","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2PLCKLQFDF9yPTCmeqNFFzKsA1yy97UJxzkQg6FrX9EZ","block_height":129849271,"block_timestamp":1728384707540473000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"GVrXNrny6vXm33KEy8DHsZwgBjFzBh2aJTss4dsg6Nrz","included_in_block_hash":"DNu2M8Ytdbz71B6Qjy4pon5fENBNRZSpJNvEHjTG3aBS","block_timestamp":"1728384702737677009","block":{"block_height":129849267},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2463757283273e21}},{"id":"9098169180","receipt_id":"9xLiGotHh3vickN7rSzk3MYQmHsYtp578ovUN9Y5yNHL","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ENLbQFP7zKQgAD9kVMTEqd3uqySwziENn1VYCTEYkjHN","block_height":130001369,"block_timestamp":1728555954984981800},"receipt_outcome":{"gas_burnt":3041662946609.0,"tokens_burnt":3.041662946609e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EKJmtUGWTiveUaVfQss3eZGzUeY9b7fm1TxX1JgNT8jH","included_in_block_hash":"7cHzcuREcbrLooL64Uu4GGjRfoXGVr8LVU9Rm8xvpnpL","block_timestamp":"1728555954067101917","block":{"block_height":130001368},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.041662946609e20,"args":"{\"id\": 56, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.351820530069e20}},{"id":"9105375593","receipt_id":"Ar7wCDfjkn24rRYz7xuBaynKhHnqBY7jUTrfUxzvUbK4","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7XoLNhvYwYVPvtUfjzMseoMTrWJgjZKCtWxRntuwdpAi","block_height":130020067,"block_timestamp":1728576955930131000},"receipt_outcome":{"gas_burnt":4515667730000.0,"tokens_burnt":4.51566773e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"B3dgGSQsU8wPv8tnLtzs6pYTBFrUADXjdnz2Dgi9LPot","included_in_block_hash":"5QAQBjGGH4F1cj4JdVhx943edgZUftVmfg51XXSL32sb","block_timestamp":"1728576954798847030","block":{"block_height":130020066},"receipt_conversion_tokens_burnt":"49111728188500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":4.51566773e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"megha19.near\", \"theori.near\", \"thomasguntenaar.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"treasurytestuserledger.near\", \"megha19.near\", \"petersalomonsen.near\", \"test03.near\", \"test05.near\", \"tfdevhub.near\", \"theori.near\", \"thomasguntenaar.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.006785011885e20}},{"id":"9105376302","receipt_id":"C8upPuCyDtTLRChRiyMDKLKJrFtw3fboKgxcqqi9BTUH","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Hz4WnztCjDxFSUNjhctsp9cBr2tCzVSyEL9JHg3kAnec","block_height":130020070,"block_timestamp":1728576959510631200},"receipt_outcome":{"gas_burnt":4867712996819.0,"tokens_burnt":4.8677129968190004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GsTfZ7Fy38PirviFEcE3nWXSYFj1xGkgskcfDspbCtPC","included_in_block_hash":"3a1UA15QWHmW18JSf7sox6U2L4fsvKX4WahHbBZ2G7d8","block_timestamp":"1728576958335171470","block":{"block_height":130020069},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.8677129968190004e20,"args":"{\"id\": 74, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.4010531427789996e20}},{"id":"9105376655","receipt_id":"8MocuhoyGP7yJzvAn65FwCFiYFYSfFdXoNPi5k9iRnzL","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5TVxaY57QzdAXgPD7NxVmpSGatzDA4wAf7wDLhP2xmwE","block_height":130020071,"block_timestamp":1728576960465367000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"GsTfZ7Fy38PirviFEcE3nWXSYFj1xGkgskcfDspbCtPC","included_in_block_hash":"3a1UA15QWHmW18JSf7sox6U2L4fsvKX4WahHbBZ2G7d8","block_timestamp":"1728576958335171470","block":{"block_height":130020069},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.4010531427789996e20}},{"id":"9123930443","receipt_id":"BcBwC9y6kBm3AgVrnMaMdmSfcaDjnz2wNeMnmWNHA46s","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"P79JnmsUaxmXxRG7CjuMAuf6GdnAVvNP2UswVbBc5ZT","block_height":130068564,"block_timestamp":1728630870869660400},"receipt_outcome":{"gas_burnt":2852179184884.0,"tokens_burnt":2.8521791848839997e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"Hi73nDqb6fAPk9bK2jrCbLXfavkr5AJ9Kb61ZnFWRCYi","included_in_block_hash":"B4rBJR3y85HWkHHseGsYC2pNtTHxzGznb1rpV2LedYEt","block_timestamp":"1728630869914707412","block":{"block_height":130068563},"receipt_conversion_tokens_burnt":"31769161043000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8521791848839997e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"100000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"petersalomonsen.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"a\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"b\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.169870795314e20}},{"id":"9125566014","receipt_id":"DjD5Dcfid7e3z8RRyvf57tidCH3H2Pnex3wfUrz522k6","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"81Fk85iQNvz1p3zN6CwmfXQc2qaQvt3s3pd5SMjyQWfx","block_height":130072708,"block_timestamp":1728635434145697500},"receipt_outcome":{"gas_burnt":3023866099925.0,"tokens_burnt":3.023866099925e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GQNUHMpDCeAXViPY78efLYBTuauWxUpjRU8WqTqm1uNZ","included_in_block_hash":"9NosrfGSKmesURENmUejaUmhuVbLtbYmgnNWF7CoL7KR","block_timestamp":"1728635433138615195","block":{"block_height":130072707},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.023866099925e20,"args":"{\"id\": 60, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.334023683385e20}},{"id":"9125577623","receipt_id":"9MXDQExY8J1MiyNGyNh7k6K45i2ju6n8PqzDhiXJDecd","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BJqHP963sSV1CzuHCztXyZgA43ARvXkyjUa5iKwtzvME","block_height":130072744,"block_timestamp":1728635471475442200},"receipt_outcome":{"gas_burnt":3353991221920.0,"tokens_burnt":3.35399122192e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BHNVxbeJH5XdehoHpzCr8Bsw5GwKR97WzdG5jexsnFcG","included_in_block_hash":"44Tzhgb5F8eXmcKEbs7EHRri3a9UEPwsgrrvC9E2qGTB","block_timestamp":"1728635471475442095","block":{"block_height":130072743},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.35399122192e20,"args":"{\"id\": 75, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.887283684165e20}},{"id":"9125577995","receipt_id":"DfRR9aKmo99p5qPGG4H44nJGuv5TxbtQNQvsxWNyboQS","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"petersalomonsen.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ApXGm6AHyJxGSNpSGZU4xBAfpF7PXc25qdFeZ4fo1Q8N","block_height":130072745,"block_timestamp":1728635473444620300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"petersalomonsen.near","status":true},"transaction_hash":"BHNVxbeJH5XdehoHpzCr8Bsw5GwKR97WzdG5jexsnFcG","included_in_block_hash":"44Tzhgb5F8eXmcKEbs7EHRri3a9UEPwsgrrvC9E2qGTB","block_timestamp":"1728635471475442095","block":{"block_height":130072743},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.887283684165e20}},{"id":"9125590412","receipt_id":"HzYjXbtQuzkNarEdxkcTKiDoPbYrtCWY5oiDu6xrBtqG","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"58DLtA2ZvKVb2QYLTStSTrH2yYdTdWpCn2vnpBDLEfut","block_height":130072788,"block_timestamp":1728635519562545700},"receipt_outcome":{"gas_burnt":2937181520692.0,"tokens_burnt":2.937181520692e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5iwVZ4CVSNUVatUZz8sejjoU2sTiQk1MBCse4DyZBKd5","included_in_block_hash":"25ThXzEitN664DktsUtssK4ssgX178b1ptHHvnVwk72Z","block_timestamp":"1728635518379860289","block":{"block_height":130072787},"receipt_conversion_tokens_burnt":"32012347989500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.937181520692e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"petersalomonsen.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.257305000587e20}},{"id":"9125592899","receipt_id":"Dr31WFthscEZokSb9jyjeufX79ir9Zj8rJzSt748orjF","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DdmUpByMUHDNKPgsqiSXSyaQeEXFe5qcJXP8jSY28Wgx","block_height":130072797,"block_timestamp":1728635529422327600},"receipt_outcome":{"gas_burnt":3915772600201.0,"tokens_burnt":3.915772600201e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5Zy4LE5c4aVq3H7qEsLmDE8DaTi3KrogAgbqCTi9LhYt","included_in_block_hash":"9Bf3Nq7ypCuMtDZXKJ8BBzMdmbxmGdCCEzKdvEvHzyRu","block_timestamp":"1728635528288555824","block":{"block_height":130072796},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.915772600201e20,"args":"{\"id\": 76, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0356975844783e21}},{"id":"9125593312","receipt_id":"2y5p6cUvjofo8SEEhAdPBkVhV3cAvKufYsFuS3u3smkz","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","receipt_kind":"ACTION","receipt_block":{"block_hash":"EjYFp8jfEV79w1C6NWgHMesnxZ5QsB2tGCk1Abek6xYP","block_height":130072798,"block_timestamp":1728635530336110300},"receipt_outcome":{"gas_burnt":2748692091486.0,"tokens_burnt":2.7486920914860003e20,"executor_account_id":"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1","status":true},"transaction_hash":"5Zy4LE5c4aVq3H7qEsLmDE8DaTi3KrogAgbqCTi9LhYt","included_in_block_hash":"9Bf3Nq7ypCuMtDZXKJ8BBzMdmbxmGdCCEzKdvEvHzyRu","block_timestamp":"1728635528288555824","block":{"block_height":130072796},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"ft_transfer","deposit":1.0,"fee":2.7486920914860003e20,"args":"{\"memo\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"test\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\", \"amount\": \"10000\", \"receiver_id\": \"petersalomonsen.near\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0356975844783e21}},{"id":"9125593314","receipt_id":"7t9BWUtbmN9j1wfqzmUhs8EqM5v9ho6HuRXB6tkKs4uy","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EjYFp8jfEV79w1C6NWgHMesnxZ5QsB2tGCk1Abek6xYP","block_height":130072798,"block_timestamp":1728635530336110300},"receipt_outcome":{"gas_burnt":3159171007136.0,"tokens_burnt":3.159171007136e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5Zy4LE5c4aVq3H7qEsLmDE8DaTi3KrogAgbqCTi9LhYt","included_in_block_hash":"9Bf3Nq7ypCuMtDZXKJ8BBzMdmbxmGdCCEzKdvEvHzyRu","block_timestamp":"1728635528288555824","block":{"block_height":130072796},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.159171007136e20,"args":"{\"proposal_id\": 76}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0356975844783e21}},{"id":"9125593760","receipt_id":"By3541br6QVU7nA8dSBsFPX6qhsBhyTRC72E7GgA9C35","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"petersalomonsen.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8PhrtyQSLDpUJFGxQLvz7LAL8opUztEa38QQjb9VvAZd","block_height":130072800,"block_timestamp":1728635532755984400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"petersalomonsen.near","status":true},"transaction_hash":"5Zy4LE5c4aVq3H7qEsLmDE8DaTi3KrogAgbqCTi9LhYt","included_in_block_hash":"9Bf3Nq7ypCuMtDZXKJ8BBzMdmbxmGdCCEzKdvEvHzyRu","block_timestamp":"1728635528288555824","block":{"block_height":130072796},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.0356975844783e21}},{"id":"9125738321","receipt_id":"9mRD3U54NV3GKHnvsgq25ZsbYNYTibgLSCyAdpspbYzm","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BasdssRQNBDav9bMgKbo9Vpa5XAbveZyRwv1onpXHvzo","block_height":130073050,"block_timestamp":1728635809729320400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"613Wrx6s6LgTXhTDGEAMM3N17C4S2CF58MinHQBxtNkP","included_in_block_hash":"DRVQ3Syog8zfcVkYeZ3fkMUDtd86RAqsWRUmQ2bGw7sw","block_timestamp":"1728635808834010811","block":{"block_height":130073049},"receipt_conversion_tokens_burnt":"22318256250000000000","actions":[{"action":"TRANSFER","method":null,"deposit":5e22,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":5e22},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.46365125e19}},{"id":"9126047775","receipt_id":"J4c6riZyfWCGyEou8hfmQpvwbHKtEvNiF9FMjPrTGtGw","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ArbGjCdWaz9QvAt8K9JLC5tash2jFhkZxs2CQ5SKfn5","block_height":130073810,"block_timestamp":1728636641974632200},"receipt_outcome":{"gas_burnt":2868867801708.0,"tokens_burnt":2.8688678017080004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"4xTJnWcJrg5E1cZkbeMGD72ay7esaqAny794vRS51z8b","included_in_block_hash":"jX3ydGNSRbmMbsLVKuvmHkzWjCAQroSr2FgeNeF3jMH","block_timestamp":"1728636640631093246","block":{"block_height":130073809},"receipt_conversion_tokens_burnt":"32451038167500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8688678017080004e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"50000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"petersalomonsen.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Refund 0,05 NEAR\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"I sent 0.05 NEAR to the treasury. Asking to get it back.\\\\\\\\\\\\\\\\nhttps://nearblocks.io/txns/613Wrx6s6LgTXhTDGEAMM3N17C4S2CF58MinHQBxtNkP\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.193378183383e20}},{"id":"9126052752","receipt_id":"7k5qPRvEAu18gEXchJQdRZfiDHAjhHX2PseCYYZNNfHx","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"CM9dRHmxyQDnQp83r8BqYXHt7BE1fsGcJWCojWqgkevC","block_height":130073824,"block_timestamp":1728636657584203800},"receipt_outcome":{"gas_burnt":3743102735509.0,"tokens_burnt":3.743102735509e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"368Qjndm5c3sx6pduCFwisR3LFPvRB99JSkxo5YHeszE","included_in_block_hash":"F6AG1LFesLQtChpA56tDGsfMKMAjbxmJTs5PCNRJx1pv","block_timestamp":"1728636656426856660","block":{"block_height":130073823},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.743102735509e20,"args":"{\"id\": 77, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.638739460197e20}},{"id":"9126053469","receipt_id":"8Z6NhDAFQ1sPUC7vf9Uh2pw1BdVWvhsCP7qt4p6TMJTs","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"petersalomonsen.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EfcDUheYcvwjVoe6QnRFNQsbMcD1x7bV3TkqMVMwC9CH","block_height":130073825,"block_timestamp":1728636658765342500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"petersalomonsen.near","status":true},"transaction_hash":"368Qjndm5c3sx6pduCFwisR3LFPvRB99JSkxo5YHeszE","included_in_block_hash":"F6AG1LFesLQtChpA56tDGsfMKMAjbxmJTs5PCNRJx1pv","block_timestamp":"1728636656426856660","block":{"block_height":130073823},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":5e22,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.638739460197e20}},{"id":"9126053470","receipt_id":"Gz2cB5qi3Vhbe6SxNZAjSbTYr2rinc3uQZxRjPKabXqC","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EfcDUheYcvwjVoe6QnRFNQsbMcD1x7bV3TkqMVMwC9CH","block_height":130073825,"block_timestamp":1728636658765342500},"receipt_outcome":{"gas_burnt":3139114016228.0,"tokens_burnt":3.139114016228e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"368Qjndm5c3sx6pduCFwisR3LFPvRB99JSkxo5YHeszE","included_in_block_hash":"F6AG1LFesLQtChpA56tDGsfMKMAjbxmJTs5PCNRJx1pv","block_timestamp":"1728636656426856660","block":{"block_height":130073823},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.139114016228e20,"args":"{\"proposal_id\": 77}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.638739460197e20}},{"id":"9126054516","receipt_id":"BMHc4YVupWviFH4jBPsTCqTqzmaMNPukRFcahzuXhsgd","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"petersalomonsen.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3MR23N6kc1q2QZE5V1C6w8pg4yTrwG9Qdp7TRqiua79v","block_height":130073827,"block_timestamp":1728636660878285000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"petersalomonsen.near","status":true},"transaction_hash":"368Qjndm5c3sx6pduCFwisR3LFPvRB99JSkxo5YHeszE","included_in_block_hash":"F6AG1LFesLQtChpA56tDGsfMKMAjbxmJTs5PCNRJx1pv","block_timestamp":"1728636656426856660","block":{"block_height":130073823},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.638739460197e20}},{"id":"9126566625","receipt_id":"8yJwYvV4iRfFtofcTm481WipSf1fbkwchRH4G4Lb3Mmn","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EUxLgvqfeybfS7YzwH3sbEetnqX5ABbs5Lw1M8cvKCoY","block_height":130075065,"block_timestamp":1728638014291669800},"receipt_outcome":{"gas_burnt":2902549048644.0,"tokens_burnt":2.9025490486439998e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"J1gwsCGS18TAb11mLgN9ZrD5uwrChHY96cgiHTaWdeKm","included_in_block_hash":"8JkVEEg2HHrxMgAryUizPfLB7eZkMtxyzePd23PEAqBj","block_timestamp":"1728638013286503635","block":{"block_height":130075064},"receipt_conversion_tokens_burnt":"33967380304500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.9025490486439998e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"petersalomonsen.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Developer Contributor report by Peter for 2024-05-21 - 2024-06-20\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Requesting funding for my DevHub contributions in the period 21th of May to 20th of June 2024. 37.5 hours in total. There have been various topics such as tests for the Infrastructure committee instance, creating the structure for maintaining multiple instances in the main devhub repository, support for multiple instances in the web4 social media landing pages and assistance in other tasks.\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.242222851689e20}},{"id":"9139548731","receipt_id":"Ge7V5cigSSrNSFjX2fkJA9DR5Hg7UQtoEwbpF33NPm2J","predecessor_account_id":"thomasguntenaar.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4PjFdq3K5Lo5RCQNFzwFBR81HZfu6mbmQPy2zmbp3oEV","block_height":130105505,"block_timestamp":1728671672259325000},"receipt_outcome":{"gas_burnt":2973212355156.0,"tokens_burnt":2.9732123551559995e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"6BnD8zMZsv12iU3hezenAdg985g6aj3HeXumyqBXyqoq","included_in_block_hash":"9aWhiNMjmBYstmgkK61czTTLwxLpLDTi82Yv3oPD6tmp","block_timestamp":"1728671671233247593","block":{"block_height":130105504},"receipt_conversion_tokens_burnt":"33337955266500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.9732123551559995e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"8500000000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"thomasguntenaar.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Developer Contributor report by Megha for 09/09/2024 - 10/06/2024\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worked on integrating new features to treasury dashboard, like asset exchange using the ref-sdk API, stake delegation, made first version live for devhub, fixed some bugs with devhub and other instances.\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Changed the recipient and amount \\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":220}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.3065919078210005e20}},{"id":"9140410163","receipt_id":"281YTQivnC1Dknc2w5voshKmyXAZU6bsmbhh98Bxoz4Z","predecessor_account_id":"thomasguntenaar.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8Wp6czuk4axpRp7wnp4BTmRkFpMHqf7i2wBvjkK92wrL","block_height":130107628,"block_timestamp":1728674024406463700},"receipt_outcome":{"gas_burnt":2856122725786.0,"tokens_burnt":2.8561227257859998e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"Ha68b8vc3drVYYZbueRTiN7Eu8heutdDJm1CCn12EK1V","included_in_block_hash":"CY65ooxAMoXDbznMcLUbXhpd8CWEnSxhLt6A21sLxnfH","block_timestamp":"1728674023134377259","block":{"block_height":130107627},"receipt_conversion_tokens_burnt":"32727603714500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8561227257859998e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"5200000000\", \"token_id\": \"usdt.tether-token.near\", \"receiver_id\": \"flmel.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\" DevHub DevRel Contributor Report by Lyudmil for 01/08/2024 - 31/08/2024\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Decentralized DevRel Contribution Report by Lyudmil Covering 1 - 31 August\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Same proposal linked different recipient\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":213}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.183398762931e20}},{"id":"9140444053","receipt_id":"BcSgP9ihUXBb8j7QD1Dwu1pXAQvnS6uGZEpYDdq8ZRpS","predecessor_account_id":"thomasguntenaar.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"B7yXVEKqSxHi83mC45JMiejCxLp73RAtWEJcccyQrbVH","block_height":130107735,"block_timestamp":1728674143112132600},"receipt_outcome":{"gas_burnt":2890982283448.0,"tokens_burnt":2.890982283448e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"28EDebiAgaQTN2kgjGBu59mRKBJoUaMBCQUe9hUXWCm1","included_in_block_hash":"2H1dV3o8KjibgeA1Sje71pVJ5jBoT9AwHmrFRB3bVyK8","block_timestamp":"1728674141860433843","block":{"block_height":130107734},"receipt_conversion_tokens_burnt":"33500079897500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.890982283448e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"8400000000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Developer Contributor report by Megha for 09/09/2024 - 10/06/2024\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worked on integrating new features to treasury dashboard, like asset exchange using the ref-sdk API, stake delegation, made first version live for devhub, fixed some bugs with devhub and other instances.\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Treasury balance insufficient\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":220}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.225983082423e20}},{"id":"9140451858","receipt_id":"Cj6uJAQ2MVSC8ASwp12XVaoaCTEnsdNvND5AZS1zXJH5","predecessor_account_id":"thomasguntenaar.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"38sDTj5vzkBxeKDcEuBwtRZiC7ZCQnroZ5qZoct1B239","block_height":130107742,"block_timestamp":1728674151049926100},"receipt_outcome":{"gas_burnt":2890982283448.0,"tokens_burnt":2.890982283448e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"Fxotfad6TSW91shZ66zVXhQqd1ifSfzkXdkRwrfZV4Nv","included_in_block_hash":"4LQw8QsL113AdYgXZ5HM6eRDKq5o273aoGgpX53Bh8Bv","block_timestamp":"1728674149816847552","block":{"block_height":130107741},"receipt_conversion_tokens_burnt":"33500079897500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.890982283448e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"8400000000\", \"token_id\": \"17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"DevHub Developer Contributor report by Megha for 09/09/2024 - 10/06/2024\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Worked on integrating new features to treasury dashboard, like asset exchange using the ref-sdk API, stake delegation, made first version live for devhub, fixed some bugs with devhub and other instances.\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Treasury balance insufficient\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":220}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.225983082423e20}},{"id":"9217068617","receipt_id":"4Cno3nnDFgBFQGttqaJK6gLmWjPoR9thAKyqRJGd4iAP","predecessor_account_id":"thomasguntenaar.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"JMe8HLQNqv43tHwEWPvJxjJptnmGgViS1xyEhwZcQTq","block_height":130368412,"block_timestamp":1728961212853508600},"receipt_outcome":{"gas_burnt":4620636629560.0,"tokens_burnt":4.6206366295600005e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"33MgVjhpZX91AAKZtRUG59CshhSiqnrtUmK7eh8EaeDr","included_in_block_hash":"DhtQhj59LAkovX8DQztbgcJfcQFJwAYkoVdaNLEjt7u8","block_timestamp":"1728961211604662148","block":{"block_height":130368411},"receipt_conversion_tokens_burnt":"49178485389500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":4.6206366295600005e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"tfdevhub.near\", \"theori.near\", \"thomasguntenaar.near\", \"test03.near\", \"test05.near\", \"test04.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.1124214834549994e20}},{"id":"9217070505","receipt_id":"4AFMqdJkiv17zQ9RMdH8Py5CJGXmbr8quQim7vit9t25","predecessor_account_id":"thomasguntenaar.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"D58sGMes7Vrx5PG87Xz3Souh9LwsnNVdH1yHMARQRGu9","block_height":130368416,"block_timestamp":1728961217708384800},"receipt_outcome":{"gas_burnt":4908458799179.0,"tokens_burnt":4.908458799179e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"Er5nMeJdsHzB9whsigQTEifU84vzb8ozFNRhSWdJdGFM","included_in_block_hash":"CePS2NYPV2uYyFZYntttTMgUpr6QUZPkyzTFCnQ2HDLe","block_timestamp":"1728961216532801795","block":{"block_height":130368415},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.908458799179e20,"args":"{\"id\": 83, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.4417989451390006e20}},{"id":"9217071174","receipt_id":"EKNPUh9jFcbveyEPthwyJ1mQBR2S2BFiEwUtq7Q1cBxG","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"thomasguntenaar.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6b2kZAG2pb4vNzazjkTb9An4hD8NvKiE4FgmRVcSLa1u","block_height":130368417,"block_timestamp":1728961218615125800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"thomasguntenaar.near","status":true},"transaction_hash":"Er5nMeJdsHzB9whsigQTEifU84vzb8ozFNRhSWdJdGFM","included_in_block_hash":"CePS2NYPV2uYyFZYntttTMgUpr6QUZPkyzTFCnQ2HDLe","block_timestamp":"1728961216532801795","block":{"block_height":130368415},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.4417989451390006e20}},{"id":"9234708734","receipt_id":"H1eLyvS4P5nTqPkRaF7YMJ2qAqEvk8pJfjdq8HpnLJuJ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"87nbv3ueMZiHYS2RUiJPkMmXnybio2h5BtwRHFS57Jqd","block_height":130409462,"block_timestamp":1729006697314262000},"receipt_outcome":{"gas_burnt":4545379829505.0,"tokens_burnt":4.545379829505e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"DrahVdrCrtsrYTYygWCn2ygUsM5BevckjSBtMP1V4bH2","included_in_block_hash":"849noNGvx9QR9WF5v2NRF5r6CRBnekbTxqiTFGiFcfxg","block_timestamp":"1729006696335902948","block":{"block_height":130409461},"receipt_conversion_tokens_burnt":"49245242590500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":4.545379829505e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"tfdevhub.near\", \"theori.near\", \"thomasguntenaar.near\", \"test04.near\", \"test03.near\", \"test05.near\", \"freski.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.03783225541e20}},{"id":"9234711459","receipt_id":"94rMog9SfPknCCBoj5cw3kQcuFFd53j1P9cWeb1K5Fuc","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"CA3bMCU1A7EW45dMaWxVAaFHv3d3vNqMz9V473jLJ1Bs","block_height":130409466,"block_timestamp":1729006701538195200},"receipt_outcome":{"gas_burnt":4935780455921.0,"tokens_burnt":4.935780455921e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7iBdN7QkK5mxuDp5JgC7BHUBh1PXEvfguZA4vo65XzSC","included_in_block_hash":"DzKR2hix81XQYqnc5op3E85EWa8tabaonYgLQRfrw8ZY","block_timestamp":"1729006700462125787","block":{"block_height":130409465},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.935780455921e20,"args":"{\"id\": 84, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.469120601881e20}},{"id":"9234712239","receipt_id":"6wBaijTKD3KdAJGTDcZrXYXCqipHQZshW8wqMWmAev3u","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ECHTmDBSE2BJBjCpQrZUaeVdE3HNhRRj1X2ejKTmHAEC","block_height":130409467,"block_timestamp":1729006702480658000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"7iBdN7QkK5mxuDp5JgC7BHUBh1PXEvfguZA4vo65XzSC","included_in_block_hash":"DzKR2hix81XQYqnc5op3E85EWa8tabaonYgLQRfrw8ZY","block_timestamp":"1729006700462125787","block":{"block_height":130409465},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.469120601881e20}},{"id":"9234862466","receipt_id":"9jhZCtH7NjkVA9J5uQAYdoGrJfprtk7KJPe96Ybkttgi","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FFaYkPGsMDfZWnoHfk7AR8QNZ5vPvW2xoEThKJ6roHvo","block_height":130409688,"block_timestamp":1729006957529946600},"receipt_outcome":{"gas_burnt":4613729175966.0,"tokens_burnt":4.613729175966e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5DCG586mAouafTR1KPNbjdWU7UTj66feoocMDHyouZL1","included_in_block_hash":"E8yTTU6d1hmnQf7rTN7iaq4PXRFywdbpyQMR6GAKhA1Z","block_timestamp":"1729006956447463636","block":{"block_height":130409687},"receipt_conversion_tokens_burnt":"48859004499000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":4.613729175966e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [5, 100], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"tfdevhub.near\", \"theori.near\", \"thomasguntenaar.near\", \"test04.near\", \"test03.near\", \"test05.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [6, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"0\", \"threshold\": [1, 2], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Remove Member\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.1023192209560004e20}},{"id":"9234863575","receipt_id":"FDV3VQmaJ6qVGS5hTotkmmC1LpWYmpkeAJoqy19LQ5BJ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"H9zXrcjPJnEM6NeReCCRYCVT5yRNdA9Nn8xZZqZUUFSo","block_height":130409691,"block_timestamp":1729006960738602000},"receipt_outcome":{"gas_burnt":4968616197275.0,"tokens_burnt":4.968616197275e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"6pTMZPPBXe9amMGj5d9b6Z5drSBh5EbRa7sp6Gb6MU4r","included_in_block_hash":"2QndtLvcutGMumsEGBjqRyjDt5LhBUEL2Fo2SujCDrBY","block_timestamp":"1729006959592386090","block":{"block_height":130409690},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.968616197275e20,"args":"{\"id\": 85, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.5019563432350004e20}},{"id":"9234864127","receipt_id":"2qufWS1mEJPwHKdmbYGcGgto3PzMpeQykZSXGdcuca7E","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GD8dfNkBG5FBsP5vJnrS3p7rGrRJxwC63Bq6RNrUpM3v","block_height":130409692,"block_timestamp":1729006961753482000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"6pTMZPPBXe9amMGj5d9b6Z5drSBh5EbRa7sp6Gb6MU4r","included_in_block_hash":"2QndtLvcutGMumsEGBjqRyjDt5LhBUEL2Fo2SujCDrBY","block_timestamp":"1729006959592386090","block":{"block_height":130409690},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.5019563432350004e20}},{"id":"9287436692","receipt_id":"EFh76fg3VaRQLqchJkDa6ogzCQWqU2aiLxPZYLF3zZ2x","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"D7PhMWUKLqyTzDZCbpLckuVYCCBcDvMHR2j3m6sHEqbY","block_height":130554683,"block_timestamp":1729167747533828600},"receipt_outcome":{"gas_burnt":2215585758969.0,"tokens_burnt":2.215585758969e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"383D7ijV3ZK8DhpWEK8v9kmFzEhGgK3uPEd4rYcDBWB4","included_in_block_hash":"DgYA3NxtHMjc8ifZyzdrDVditWXp4HGFHXprvetKvpXv","block_timestamp":"1729167746329373608","block":{"block_height":130554682},"receipt_conversion_tokens_burnt":"48587207323500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.215585758969e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"testingAccount.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"tfdevhub.near\", \"theori.near\", \"thomasguntenaar.near\", \"test04.near\", \"test03.near\", \"test05.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.7014578322040003e20}},{"id":"9292146702","receipt_id":"G4bzBXG2DZvtnA1siJHfQt1vWhiCuyhuMn1nS3CtVaji","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2H2jiY5snmbnYKi9iMBUCiSp8ThmXYoDwtfAiSo6XpgC","block_height":130565845,"block_timestamp":1729180210714287600},"receipt_outcome":{"gas_burnt":2214354202201.0,"tokens_burnt":2.214354202201e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"BmQq773a1wKwbfrDDS5u6XDnhzxrZYHzdBQeEABiAPoT","included_in_block_hash":"HPKeHXYzxgtADPGCM1TixKF9DycnEEozgaRByYh7Ybtm","block_timestamp":"1729180209550320577","block":{"block_height":130565844},"receipt_conversion_tokens_burnt":"48234347832500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.214354202201e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"testingAccount.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"tfdevhub.near\", \"theori.near\", \"thomasguntenaar.near\", \"test04.near\", \"test03.near\", \"test05.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": 1, \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.696697680526e20}},{"id":"9292203902","receipt_id":"3puzYDn11Bg3KnccumjfweAbyEahWPNHeJYGGLHHG5ag","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GecNgJDbST8u8MPBtJjN5DSwFgnz8qX8njuLxsXEd3zY","block_height":130566056,"block_timestamp":1729180444223431700},"receipt_outcome":{"gas_burnt":2294574339785.0,"tokens_burnt":2.294574339785e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"8M45LrJiaPPXAPLK7a17pnaKzkkYisw9TV2cKCCHcpWQ","included_in_block_hash":"ADdJSBhiCob8N5svxSGd7iTMxSU6zVkQ93GPLSADmeJf","block_timestamp":"1729180443284505586","block":{"block_height":130566055},"receipt_conversion_tokens_burnt":"48940066814500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.294574339785e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"testingAccount.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"tfdevhub.near\", \"theori.near\", \"thomasguntenaar.near\", \"test04.near\", \"test03.near\", \"test05.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": [\"1\"], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.78397500793e20}},{"id":"9319441556","receipt_id":"66FTt1DGSSH9MNM29zafXSTS7wjWiPEyrsUg26vWxwjX","predecessor_account_id":"frol.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4exiEbBcyQWydHkeQCFRubMoWo4BGUgjShnUdvzFMPpK","block_height":130636711,"block_timestamp":1729260356183666700},"receipt_outcome":{"gas_burnt":1828608724817.0,"tokens_burnt":1.828608724817e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"F7j9oj9zpVEmuZiyKDs7kfVEVqNq3oFEh9zTWeXYgVTj","included_in_block_hash":"EqyjhxJ7ocdXGcfxrfjZkYC3gsvX9sZVcThNuGyKr8TS","block_timestamp":"1729260354851529557","block":{"block_height":130636710},"receipt_conversion_tokens_burnt":"37267093382500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.828608724817e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"testingAccount.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.2012796586419998e20}},{"id":"9319455638","receipt_id":"7gURUrkta6UHYtXmFRXhNtdeqzJkkRRaY6FmK5p5C1Hq","predecessor_account_id":"frol.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"21uSchKHovEFsUZd7JCbbTgb4soEZwJR48j4x2GQCJ7P","block_height":130636766,"block_timestamp":1729260422001173000},"receipt_outcome":{"gas_burnt":1806769905989.0,"tokens_burnt":1.806769905989e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"G3rN2cqeRNFC4gkxfHu1VHGzXkHcmsS2LR98PKvcBKC5","included_in_block_hash":"HeiFtuMU1jewuV6urs38kFBpgMrxX8AfnnsmYP8Ke1RG","block_timestamp":"1729260420889013581","block":{"block_height":130636765},"receipt_conversion_tokens_burnt":"36494617199500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.806769905989e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"testingAccount.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.171716077984e20}},{"id":"9319463476","receipt_id":"65wFR1p2Pf26RJsjKFpxLYkYnRmGjPwKtKcXmrTdMQ65","predecessor_account_id":"frol.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6bXng2D3DDUa4F6ceZFDgJSi2stezmpX6hY23piny6cq","block_height":130636798,"block_timestamp":1729260457164777500},"receipt_outcome":{"gas_burnt":1810143075925.0,"tokens_burnt":1.810143075925e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"D1VrNNyofTJ9yEFJYMoqSvjP356qj3VSE28fd8VEXW9k","included_in_block_hash":"EdZCLxRfF1q1S5BSmgUjJJsU1TearmevjhJ4wdtMsv8H","block_timestamp":"1729260456063294897","block":{"block_height":130636797},"receipt_conversion_tokens_burnt":"36518459057000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.810143075925e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"testingAccount.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": [1, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.175327666495e20}},{"id":"9319468596","receipt_id":"3umf6pmYeMz7KBMD7Y5ZXUKbc16zvu7imn2FYpygCKHK","predecessor_account_id":"frol.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7UU5F8EbXvFb317QQmd7uSH7gRXcykFEAy4x7RnHn1bq","block_height":130636819,"block_timestamp":1729260480285209900},"receipt_outcome":{"gas_burnt":2287479679706.0,"tokens_burnt":2.287479679706e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"2PmemUz33p1yKEW3YUF9FQoS8ztoEQWHq6wWD5NcTtDh","included_in_block_hash":"9Jcd2E7HvzpnAzkJ4i6tttzvsBzu7i3zMuBWHMJjkVc4","block_timestamp":"1729260479208407470","block":{"block_height":130636818},"receipt_conversion_tokens_burnt":"33318881780500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.287479679706e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": [1, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.620668497511e20}},{"id":"9320191431","receipt_id":"EiXF4VU8xykWiGyHgpGzg1ETxTW4CRxu16au88Zejt1D","predecessor_account_id":"frol.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6crHU2sbFPpP4oDbQN4qqj2ZwhgJd3Wdgui831dFFEQg","block_height":130638543,"block_timestamp":1729262505854968600},"receipt_outcome":{"gas_burnt":1808329478421.0,"tokens_burnt":1.808329478421e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"BZB8msd2qS84ESpN8ajYpVhN4YtVcLDpTawxGtDXyHw5","included_in_block_hash":"EBsSY8NUJ6qNMEr9o2EfvAw2kpGVggD3TgxKEa4WVDug","block_timestamp":"1729262504567863658","block":{"block_height":130638542},"receipt_conversion_tokens_burnt":"36442165113000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.808329478421e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"testingAccount.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": [1, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.172751129551e20}},{"id":"9374145067","receipt_id":"BRQoLwwLfTDMwsxVpQYV8Xj6tYq8xkAYg4KVD8Gc6wjP","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8pFr39VytuU8gica5okvQFw16PhTGhHziyYoGUwkuxFm","block_height":130780205,"block_timestamp":1729423354877076200},"receipt_outcome":{"gas_burnt":3128169920194.0,"tokens_burnt":3.1281699201939997e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5d5KD9FTL2mePTwt8M8WzE2mqDqNHo3Mwcyu8MXtLe79","included_in_block_hash":"Ggmue6SpeDhXJYSoHNMFRGLHNWHsu9tJFsF6XkCiSEqS","block_timestamp":"1729423353774079017","block":{"block_height":130780204},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.1281699201939997e20,"args":"{\"id\": 69, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.438279819939e20}},{"id":"9397250007","receipt_id":"ERpqZ58EWUcBSAW6vZKT1h2dihQvSTwv168qVsc7rPPq","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"H81mQLhJtxrLnrAEzFdJTmZjfGyn3K5ppBbMBFbKpqvd","block_height":130841002,"block_timestamp":1729490564468299500},"receipt_outcome":{"gas_burnt":3094737110398.0,"tokens_burnt":3.094737110398e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FfW1tz7Tv4ouYjRL4bGmvS2nqfrsKmBJ4xhMk5GAEY63","included_in_block_hash":"8dcSQ442UmjiyPRPSNh19m2HtWSrMBCoWzo6gvMDY9DS","block_timestamp":"1729490563451166873","block":{"block_height":130841001},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.094737110398e20,"args":"{\"id\": 82, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.4048470101430003e20}},{"id":"9397287589","receipt_id":"G4fwiNKfWLjbfdgviasfAADsddP6UGozXZdFJyWBywBM","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"eQB1DHi3qkewUBpYgtNRqbJsHMykxCWSyXnhyPFz9AB","block_height":130841073,"block_timestamp":1729490645219711700},"receipt_outcome":{"gas_burnt":3150024934102.0,"tokens_burnt":3.150024934102e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7YZVDqMiyfuEpkUDstZfPuYtpdZT9SEjJgsVDEavKNvS","included_in_block_hash":"85e4nGvaschgBZR7FKnqkB1dxbTtxHDg3N7FDvXGeBg4","block_timestamp":"1729490644065236944","block":{"block_height":130841072},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.150024934102e20,"args":"{\"id\": 81, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.460134833847e20}},{"id":"9398026869","receipt_id":"2ECjoFYrUWw3P4Wf9g2QsveYegPyfU8gXQGepuEBJk3S","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8ZEFYSfSs6AAQd8X9pq2Gc8h9kJnxGDpJC3ubDokzQ1","block_height":130843100,"block_timestamp":1729492928342817000},"receipt_outcome":{"gas_burnt":2479960212297.0,"tokens_burnt":2.479960212297e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"GW8kri9LgQJncm1MsobtzXUsKwXKV6EAkY3HEghgNyBV","included_in_block_hash":"8vjRrHwJ9D71x5uSyLEjuzKgL9EHaKtWokwp8eyRjBpu","block_timestamp":"1729492927178753058","block":{"block_height":130843099},"receipt_conversion_tokens_burnt":"44367198546000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.479960212297e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"tfdevhub.near\", \"theori.near\", \"thomasguntenaar.near\", \"test04.near\", \"test03.near\", \"test05.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": 2, \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.923632197757e20}},{"id":"9398049360","receipt_id":"8eyw8GZ8NvqQkwxXWEm4skAyMmkxpR2fgNN2K3CPcpHS","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BAQCCTmMq7nTGU96XMb5KYaoNVr4Ks6psUUNskya1fH2","block_height":130843143,"block_timestamp":1729492976322084000},"receipt_outcome":{"gas_burnt":1943873528157.0,"tokens_burnt":1.943873528157e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"7hojyo7mdiSUzeSq83R77ECEZ9LLkwszQyTJH7pVKszB","included_in_block_hash":"5R7zWHdWknXYmBB39SNb96hRKbJd9tHFTqKKse8qhcUY","block_timestamp":"1729492975126560485","block":{"block_height":130843142},"receipt_conversion_tokens_burnt":"36156062823000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":1.943873528157e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"tfdevhub.near\", \"theori.near\", \"thomasguntenaar.near\", \"test04.near\", \"test03.near\", \"test05.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": 2, \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.305434156387e20}},{"id":"9398070956","receipt_id":"5uoGZrgMHwF1pDd9tHfh2PvJModvvpSPpse2cCVAVNs","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3wQ8xB6HvdaHuwyCnDHRrqtdtNYF3vwXMvobtgYKYX13","block_height":130843177,"block_timestamp":1729493014653932500},"receipt_outcome":{"gas_burnt":3189307245217.0,"tokens_burnt":3.1893072452169997e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9dAc5AHXXwpsDZQ62hWaEqqVt3G2Xmz33n1oeW8bQViT","included_in_block_hash":"6X7MAkZ4P9z4Yqkwuu18aFBnDcQgoyi7bNJXZnAw12mj","block_timestamp":"1729493013369077471","block":{"block_height":130843176},"receipt_conversion_tokens_burnt":"36189441423500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.1893072452169997e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"tfdevhub.near\", \"theori.near\", \"thomasguntenaar.near\", \"test04.near\", \"test03.near\", \"test05.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": [50, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.551201659452e20}},{"id":"9398075694","receipt_id":"DHEsmHjyVYSoEcvbZpv39hi2yzeh91wAHdM3RY85qWBu","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Hb9KpTwmRnTPM6XZquKvpeodqNyqrT8Y2kb66XzJ6iAL","block_height":130843199,"block_timestamp":1729493040947625700},"receipt_outcome":{"gas_burnt":3875445469021.0,"tokens_burnt":3.875445469021e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AFuu89hBqA5Y73duHrQNiJV6uLgpubEBCpEKSDmUVqWz","included_in_block_hash":"DtmH2Gvv8hyp55JjFsZUGaDfGoVhuffaV58gvVJaeSua","block_timestamp":"1729493039702252098","block":{"block_height":130843198},"receipt_conversion_tokens_burnt":"44400577146500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.875445469021e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"2dada969f3743a4a41cfdb1a6e39581c2844ce8fbe25948700c85c598090b3e1\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"treasurytestuserledger.near\", \"tfdevhub.near\", \"theori.near\", \"thomasguntenaar.near\", \"test04.near\", \"test03.near\", \"test05.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"4\", \"threshold\": \"4\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": [50, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.3194512404860004e20}},{"id":"9398119709","receipt_id":"9Qj4QcsJ16Sv8GbYSRgmvaqQQnjW4JfjccfSe512o8Q6","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Cq4P8SQWfQS2NSdJZv58D4MM7yXKWrQVoaTXHy4TZzKc","block_height":130843337,"block_timestamp":1729493190795266300},"receipt_outcome":{"gas_burnt":3852287513913.0,"tokens_burnt":3.852287513913e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5TV3XxvXonaLt7ZkNG26fwkBCp5KeyLsKCjY6TYEzgUW","included_in_block_hash":"6Kn5xiDcGHD4XcuZALfwQ81Yp54dFaj1ozEvadXB61Z7","block_timestamp":"1729493189737983793","block":{"block_height":130843336},"receipt_conversion_tokens_burnt":"43895129767500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.852287513913e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"frol.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"freski.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"theori.near\", \"thomasguntenaar.near\", \"frol.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"2\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": [0, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.291238811588e20}},{"id":"9398134889","receipt_id":"6itL4CjFKLrtHMJbFh33HA1E8sgJpkNYQpbStkUfoPsP","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7NoMXkMqv68Vm7rMU3mp9NeGcaHwNf8Y6teue28u9xxG","block_height":130843404,"block_timestamp":1729493262974966500},"receipt_outcome":{"gas_burnt":4498530340277.0,"tokens_burnt":4.498530340277e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"6TYKJj6nXnMBFVabmxWz3R1mANBoc1vorRjAhjN3pz25","included_in_block_hash":"9sDkYiRF9aFpzaBEMw5eELyLERVnxkmLAS3zWSTJM6nM","block_timestamp":"1729493261852671349","block":{"block_height":130843403},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.498530340277e20,"args":"{\"id\": 88, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.031870486237e20}},{"id":"9398135182","receipt_id":"2PvJV2rVE2sbiWtggraSwNbjf5NREXuuVGZZwQEwmaLG","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"CMFd6NwVuKt3RrVkieXywono77x2f1WdYtDJPFFMG884","block_height":130843405,"block_timestamp":1729493263955486500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"6TYKJj6nXnMBFVabmxWz3R1mANBoc1vorRjAhjN3pz25","included_in_block_hash":"9sDkYiRF9aFpzaBEMw5eELyLERVnxkmLAS3zWSTJM6nM","block_timestamp":"1729493261852671349","block":{"block_height":130843403},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.031870486237e20}},{"id":"9463740932","receipt_id":"97WNjynkhRws8otS8LUfE6Wm46a4VzajFmqGfudc2moY","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BbQvaUTTnkwvvTFeBCaBCjueoB6trTo6hhYCNo5eNFSS","block_height":131016221,"block_timestamp":1729690775371076900},"receipt_outcome":{"gas_burnt":3052829793871.0,"tokens_burnt":3.0528297938710004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5vGBVtisSkHH44s4rbU6Sb6uYCKmBDBPqKT3mzKwLasz","included_in_block_hash":"AyQ9DPRhGrq9sgSQUZ9fERxdaQ3nUFzJbogdZFKgFXRr","block_timestamp":"1729690774277675798","block":{"block_height":131016220},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.0528297938710004e20,"args":"{\"id\": 78, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.362939693616e20}},{"id":"9463770212","receipt_id":"54hEkxeD5vqYgHSPswwGfS9RM7krg9bbViP7AbPtXSuP","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8CTYFJex45qknVQd4tSfffZtx7FFu4CLGJdfk6k5q5Jy","block_height":131016349,"block_timestamp":1729690914446778400},"receipt_outcome":{"gas_burnt":2939899805719.0,"tokens_burnt":2.9398998057190002e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CE8uDP8bUHVMk466TumMtNwkYWRBMzBi9EsnZFuwARdK","included_in_block_hash":"Dpgk5oe6DQG6obqiTvwtd2UEV3KRkpPyXQK7z1aKw1EJ","block_timestamp":"1729690913460895747","block":{"block_height":131016348},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.9398998057190002e20,"args":"{\"id\": 80, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.250009705464e20}},{"id":"9464078712","receipt_id":"De8FwSuUVeGYYX8C6svMMj7UteFRuziNMQriSeisMg6b","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Ho7yvC19pHxvV4HM9EFVX84pmsSBEG9NKkzMCWDHDG77","block_height":131017173,"block_timestamp":1729691833180986600},"receipt_outcome":{"gas_burnt":3691072044016.0,"tokens_burnt":3.691072044016e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"458nz47UQkuarL4RFXMgXqzpNwm1AtbffdAwAuWhE2xP","included_in_block_hash":"6Z7QaG5yhXRjs78kjRGZt6b2b2wuJPYpyKnxuTSJNjgJ","block_timestamp":"1729691832026850858","block":{"block_height":131017172},"receipt_conversion_tokens_burnt":"43728236765000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.691072044016e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"frol.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"freski.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"petersalomonsen.near\", \"theori.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": [0, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.128354411666e20}},{"id":"9464344300","receipt_id":"CQ7Wp2cjrz67E5scgZBV2q2kq8JneNVpw86Zu8yUtR7S","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Eqh14KXTDRaY3nHAy1BwazhuSauk5n7GgqVu7Ttoyv2Z","block_height":131017762,"block_timestamp":1729692494680657700},"receipt_outcome":{"gas_burnt":4344509742071.0,"tokens_burnt":4.344509742071e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5fWGdy75NLhXzYqrakyKVvfDzfzb32GPveKEWXsoFoG4","included_in_block_hash":"9fVWJGbs9CTEwweKJ7PLet4PN9yJYKnyoescRGDWndT9","block_timestamp":"1729692493510246136","block":{"block_height":131017761},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.344509742071e20,"args":"{\"id\": 89, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.877849888031e20}},{"id":"9464344791","receipt_id":"DU4GFffDnjmpgt9xcAWC2bHELMXNLb6AvZxTSoMW2J4J","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3F6nR8eNdb6vKDtJwWn6aGkZH5pdtUtXTD9ZBm6MwVaC","block_height":131017763,"block_timestamp":1729692495763063000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"5fWGdy75NLhXzYqrakyKVvfDzfzb32GPveKEWXsoFoG4","included_in_block_hash":"9fVWJGbs9CTEwweKJ7PLet4PN9yJYKnyoescRGDWndT9","block_timestamp":"1729692493510246136","block":{"block_height":131017761},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.877849888031e20}},{"id":"9464405370","receipt_id":"CoqRuz7gwNnCVRWBm9EbNKKPmYtsG2wcBiHLnza9yT16","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7yGtLWJHWr8enX2aL18Lfcqf24AiRWVtiQzx65WBDQ4f","block_height":131017908,"block_timestamp":1729692661303186000},"receipt_outcome":{"gas_burnt":3636510924803.0,"tokens_burnt":3.6365109248029996e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9iMYbyCqeEH3JQA4DegkX3B9qHEkPR5R8WLjZfwewUZS","included_in_block_hash":"6qi21jNWaTdBV9tnmbvy1pgjmcmJ3BVEX4Tm5EfsBN5g","block_timestamp":"1729692660024629994","block":{"block_height":131017907},"receipt_conversion_tokens_burnt":"43632869335000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.6365109248029996e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"frol.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"freski.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"meghagoel.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"4\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": [0, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.072839618153e20}},{"id":"9464424591","receipt_id":"3g3JbBLuEJW1Z5GEEFQJTVtgAVQeGgscH9hz55uvfiYd","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"25PKpLbeocMnFmUkbbFYuAnaCqBaGua4KyMEGd75wFgS","block_height":131017959,"block_timestamp":1729692720495505700},"receipt_outcome":{"gas_burnt":4354906129829.0,"tokens_burnt":4.354906129829e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AHKt2YsCbXUziPCh1xgz5UxgaTxkhB1AaUJ5zGWf1cdf","included_in_block_hash":"EvrBJm1CrivUdjXjE181k6Fe3YLCm2e1RFBEV5TP2SmL","block_timestamp":"1729692719390269222","block":{"block_height":131017958},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.354906129829e20,"args":"{\"id\": 90, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.888246275789e20}},{"id":"9464425181","receipt_id":"6P6Kd3rR7m2yEPzqXA3FSY2qCQVQ2TRKxcGvLYzkPr12","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6E2mAaN1h7bHqPvfYKCVYJ6XpRGxbq7vTTedqubAcgGk","block_height":131017960,"block_timestamp":1729692721460287200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"AHKt2YsCbXUziPCh1xgz5UxgaTxkhB1AaUJ5zGWf1cdf","included_in_block_hash":"EvrBJm1CrivUdjXjE181k6Fe3YLCm2e1RFBEV5TP2SmL","block_timestamp":"1729692719390269222","block":{"block_height":131017958},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.888246275789e20}},{"id":"9464436959","receipt_id":"9UtCGwFDjv2XuGPsbEosdPBVrLyXyUWBVqKEDA3Y9fN4","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2bST5FvkfxF1PBRqjzmXzaawpCW8NjfQHg7z1HPXHRhX","block_height":131017997,"block_timestamp":1729692764216064300},"receipt_outcome":{"gas_burnt":3025954038073.0,"tokens_burnt":3.025954038073e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3wkTxP4qs2ZmpkaQj5hrXonDQWjasFV3GXVUL7E1g15x","included_in_block_hash":"3f664QgE9T8whFQ11SPbFvRpPo1DZ6r5AmaYZkfVufDf","block_timestamp":"1729692763021868580","block":{"block_height":131017996},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.025954038073e20,"args":"{\"id\": 79, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.336063937818e20}},{"id":"9464468414","receipt_id":"FLK9Ljrz9nyZ5SQCU7yVcjHKiX4nCAYAjjv99Q4FTvx5","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"53pwbmm8kaVw7uDp5PKN4PKB69PVPYdQ18cJ7X5RQNaB","block_height":131018039,"block_timestamp":1729692818805504500},"receipt_outcome":{"gas_burnt":2828078374412.0,"tokens_burnt":2.8280783744120003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CW9dB4HDTz8bNnf48DyBjnP9PXjE2ms2kSQfXG6W8t7R","included_in_block_hash":"4Dbe68MUZWRQxTRKGCvAAcXbgYHKcuueeMVZQJowFKRf","block_timestamp":"1729692817795619657","block":{"block_height":131018038},"receipt_conversion_tokens_burnt":"32517795368500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8280783744120003e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"100000\", \"token_id\": \"usdt.tether-token.near\", \"receiver_id\": \"maguila.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":226}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.1532563280969997e20}},{"id":"9464486909","receipt_id":"HdHZpEwqz4FDTRJN3qnWjgUEkgKgvZHyuKyCPbugTxrC","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Eg1nHwFMvbZkP6xi1VWddyBL4vMaomDD5TNr31yZQ92A","block_height":131018060,"block_timestamp":1729692846327183600},"receipt_outcome":{"gas_burnt":3011106182269.0,"tokens_burnt":3.011106182269e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2EFHep4FbdHUCTYvXt76NYx21e7rijj8j5bHNytqEKYi","included_in_block_hash":"AKKkJY847oX2mdnm49xrLuYwmQ7bBuJejLE8pxCvy7fS","block_timestamp":"1729692845017752033","block":{"block_height":131018059},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.011106182269e20,"args":"{\"id\": 91, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.321216082014e20}},{"id":"9464535942","receipt_id":"9TgfC1g4gDiZsk75uaY7PTWY94g9fzuqoTzF45KqMo8z","predecessor_account_id":"meghagoel.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EoW5Koxo4LTKypv4xHbwvxH2bFqcDYwpXU4DpTLimNEa","block_height":131018130,"block_timestamp":1729692939082487000},"receipt_outcome":{"gas_burnt":2923911074461.0,"tokens_burnt":2.9239110744610003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5EHwTMDMQQjiUhdrhgX9ddddWzbJRYeDQVBUrNLqGArh","included_in_block_hash":"5dnTQvqFvdJ2eM4HhPTtJiJ5Lxa1tFQyNdfppTZxvdJn","block_timestamp":"1729692937743862299","block":{"block_height":131018129},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.9239110744610003e20,"args":"{\"id\": 91, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.234020974206e20}},{"id":"9464841515","receipt_id":"Gvt9iux8dsF2p8S8VsdApcfLG2m6ZjhQbWVxS6WhjUYu","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Gx84i1daVPaJdXjKoRDat2wVbFqjyvXutBbEPtauWv5h","block_height":131018851,"block_timestamp":1729693791523380700},"receipt_outcome":{"gas_burnt":2829587387232.0,"tokens_burnt":2.829587387232e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CUQHhdaCM7LB4bSRcYMTXgwveyns9irBD9CAnAH7yWTm","included_in_block_hash":"HoNnypjCBKxK2QkCMwniD1igDC4pnx3S38pV4kvbPsiM","block_timestamp":"1729693790283535361","block":{"block_height":131018850},"receipt_conversion_tokens_burnt":"32493953511000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.829587387232e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":226}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.154526922342e20}},{"id":"9464844684","receipt_id":"8upRrrL1NG7NaVzUJvydpFU2KZEtyLNjn6WgQ4sjBPEu","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"AtB2h6jxi487gA7An6jTmk6t3C2MrHT3fUXaGMtUkALu","block_height":131018862,"block_timestamp":1729693805996063000},"receipt_outcome":{"gas_burnt":3006653127017.0,"tokens_burnt":3.006653127017e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9zCJx98VBfB7uL5VS7EXyPvaR5aH2Z7HNZXGTQ7wPnEC","included_in_block_hash":"DduN9vrVKNipBzLANue7LeV6d59Xr2rutqDZ5Dwro6Du","block_timestamp":"1729693804720388447","block":{"block_height":131018861},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.006653127017e20,"args":"{\"id\": 92, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.316810710477e20}},{"id":"9464851031","receipt_id":"Eq4NKhe3BMUi8AgT6HRZJewJE65qnjmBHz5qNt7s6HbU","predecessor_account_id":"meghagoel.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"88KmvhRG6Hzyy4uzmvsNAvfhxQMS5hkuRNnAja8vRaJJ","block_height":131018886,"block_timestamp":1729693832870607000},"receipt_outcome":{"gas_burnt":2960796550291.0,"tokens_burnt":2.960796550291e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EqkbK75pSxDW5RhsUeSakfY9izK8Xs6SjnbULkyAoipF","included_in_block_hash":"AJ9rBtZmp8F5mULdkzmvWRqeLKKjWXyRcHETVRTLLgaM","block_timestamp":"1729693832017488473","block":{"block_height":131018885},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.960796550291e20,"args":"{\"id\": 92, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.270906450036e20}},{"id":"9464911377","receipt_id":"GZb3gGbhutbXJHBy8oGmayY2jBZBcbHoUAZbXgeu5jhL","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2FK5jSDdmrx13RZQ2ETqissFjiNKTMo7uHm97Xt8oqis","block_height":131018981,"block_timestamp":1729693945292061000},"receipt_outcome":{"gas_burnt":2788121519454.0,"tokens_burnt":2.7881215194540003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5mPfYL4d2bFVFR93r6UKb52f4gCZEKBWjNhc7NEwFuK","included_in_block_hash":"Aix3TQWVewgDGjeqk7rNHPkLbC6xkVTFDjQLU7UrfQ3t","block_timestamp":"1729693944045953718","block":{"block_height":131018980},"receipt_conversion_tokens_burnt":"32493953511000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.7881215194540003e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-09-30 2024-10-13\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":226}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.113061054564e20}},{"id":"9464924264","receipt_id":"4QjZKjB2Y7GAoCG248LbAAQZteTd2LKbAaPfr8hexAe6","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4vqT4KbhUgSCYH3n5eopcbfbt57gUtXeyR79NMfGRjBw","block_height":131018996,"block_timestamp":1729693963985812700},"receipt_outcome":{"gas_burnt":2923721391461.0,"tokens_burnt":2.923721391461e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"8WjM1iaoxbHWW7JTJC9mZUexnmp93ybxcmLxHK26Y9uZ","included_in_block_hash":"6hwjDWLpefSkZeVkvm5CWJ6GftBaqibvseHWuB29vpGg","block_timestamp":"1729693962795500214","block":{"block_height":131018995},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.923721391461e20,"args":"{\"id\": 93, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.233878974921e20}},{"id":"9464933803","receipt_id":"BsjvErRLSwKKkcHKYg4kUQ1SC74kBC2E25i5aV35ZPsB","predecessor_account_id":"meghagoel.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5rkLdYCr7H3MQRk2VqWnknHw9LM5QhjScTdKuUKGoofy","block_height":131019008,"block_timestamp":1729693979783967500},"receipt_outcome":{"gas_burnt":3002297606093.0,"tokens_burnt":3.002297606093e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BpWUULNiYMzQRopqCVtJueqHM1GP1hojS3NezVE6SzMH","included_in_block_hash":"ygDCwAS67sXxLtAV13u2Q34Mr7nZvCvNHnZYsMvpjRj","block_timestamp":"1729693978563697275","block":{"block_height":131019007},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.002297606093e20,"args":"{\"id\": 93, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.312455189553e20}},{"id":"9464967999","receipt_id":"GUz3SdUXgab6ZB6eDtvgrYVenZVZSyJ6BpGL9QHRC6n3","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"45ovGyojp6AJ2hVqn86pJ2BNUrrezNacoygPPjpTNmXg","block_height":131019139,"block_timestamp":1729694129267664400},"receipt_outcome":{"gas_burnt":3660361698404.0,"tokens_burnt":3.660361698404e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5ZZsidoxnh8iWBbwcB7bv7oA2goYEy34hPgfjzqy3KeQ","included_in_block_hash":"21Am4Sqh4uxZi3zU3zCY9LN4KsxJGn7HERuaKmwzDBRd","block_timestamp":"1729694128243128881","block":{"block_height":131019138},"receipt_conversion_tokens_burnt":"43632869335000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.660361698404e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"frol.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"freski.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"meghagoel.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": [0, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.0966903917539996e20}},{"id":"9464988754","receipt_id":"f63JyvRLCAv39qPhZTaHPcDVTePh4wgk4o6aYsnbqd9","predecessor_account_id":"meghagoel.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Dnckym8FYfrATEnzJ6Z9dq5423MQgsZUbJvuBzVg3mtm","block_height":131019210,"block_timestamp":1729694214569206500},"receipt_outcome":{"gas_burnt":3709165413641.0,"tokens_burnt":3.709165413641e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"E99xUpxfbw3yEyYGf9PukUiSf1imM2W1qP8k2uJUtSS1","included_in_block_hash":"DdGSfHjQHmN8troY9nX8bPz9jfGJzmNH3MLBfs7Fzni","block_timestamp":"1729694213256780591","block":{"block_height":131019209},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.709165413641e20,"args":"{\"id\": 94, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.019322997101e20}},{"id":"9465124793","receipt_id":"8mVdKVsDkaQqHUEaQ1ndYjyjFHQ4rYHhp7RrcBMKGf1i","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7YTr6t8yasZpG5atLUzStvRD35A5LPhXrMzju84GD9Cw","block_height":131019519,"block_timestamp":1729694560657085700},"receipt_outcome":{"gas_burnt":4435760976815.0,"tokens_burnt":4.435760976815e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"89WHL3K7qjkdZ2WXjH71ozsJ9N1cZ6pBu9Wtu4pMEA53","included_in_block_hash":"GYWtbZdUsTZFFucEK2JEp1reMwZ4z9hKQBLo4iLNWuon","block_timestamp":"1729694559336948835","block":{"block_height":131019518},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.435760976815e20,"args":"{\"id\": 94, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.969101122775e20}},{"id":"9465125181","receipt_id":"3H24gAm3SSHyvvSFMPjArxJHTHKruYpNVb6KSLa1HX1e","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BYSaYVyjkVwcv14MnKHZ32JJVN5MDoSBsb6crUoJWrpi","block_height":131019520,"block_timestamp":1729694561862429400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"89WHL3K7qjkdZ2WXjH71ozsJ9N1cZ6pBu9Wtu4pMEA53","included_in_block_hash":"GYWtbZdUsTZFFucEK2JEp1reMwZ4z9hKQBLo4iLNWuon","block_timestamp":"1729694559336948835","block":{"block_height":131019518},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.969101122775e20}},{"id":"9465154061","receipt_id":"5XtS3vRGwWN8ERYWHouRU2N8yicNHn8cUVY6u66rVJzT","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6JRcp4vWsrr3VgB7qeDnD6gwAfxMpknAU69F9MBFHUZB","block_height":131019619,"block_timestamp":1729694675322686700},"receipt_outcome":{"gas_burnt":2727606954404.0,"tokens_burnt":2.727606954404e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9jvC5gPgZ9fWYhHAPbVP26BJ7cs9Jo2iVnGkc3ofhFUt","included_in_block_hash":"BEZx3w1o4aFWZLWRnQfd4S6b8iUmd9TcK41i5ckjRT4m","block_timestamp":"1729694674079621724","block":{"block_height":131019618},"receipt_conversion_tokens_burnt":"31716708956500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.727606954404e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing threshold\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.044774043969e20}},{"id":"9465160089","receipt_id":"2XRnzxkcKN5yo2x9Rtp78aGcw3ezbxAfnMNzjkcmJ867","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"H21CXjkAnJtJAcTWEEW53UR9rPFSC1CKQ81kMf3iyVhA","block_height":131019634,"block_timestamp":1729694695044314400},"receipt_outcome":{"gas_burnt":3651121424821.0,"tokens_burnt":3.651121424821e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"DQXypNDmYxmoLdG6UmuYJVuLWCdJ5tDv9vyPcoxW3ya2","included_in_block_hash":"3EvEY2Z4dam5nVqaziEMeQmNjAYr5wwB89jrujFETFak","block_timestamp":"1729694693743116047","block":{"block_height":131019633},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.651121424821e20,"args":"{\"id\": 95, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.430719324129e20}},{"id":"9465161205","receipt_id":"516i3TiTKHBWuQimhkD3ZFdzrfL8qLrfDV7mXnWnWF5w","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4x4u46reM8eMr8XKGeShXLZdD222gtguueAD7T9nnUy9","block_height":131019635,"block_timestamp":1729694696329081000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"DQXypNDmYxmoLdG6UmuYJVuLWCdJ5tDv9vyPcoxW3ya2","included_in_block_hash":"3EvEY2Z4dam5nVqaziEMeQmNjAYr5wwB89jrujFETFak","block_timestamp":"1729694693743116047","block":{"block_height":131019633},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e22,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.430719324129e20}},{"id":"9465161209","receipt_id":"Diao5nuutdixsDGjoTYANh5SFHy4fHZkuPWGmcukVr6R","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4x4u46reM8eMr8XKGeShXLZdD222gtguueAD7T9nnUy9","block_height":131019635,"block_timestamp":1729694696329081000},"receipt_outcome":{"gas_burnt":3023075190848.0,"tokens_burnt":3.023075190848e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"DQXypNDmYxmoLdG6UmuYJVuLWCdJ5tDv9vyPcoxW3ya2","included_in_block_hash":"3EvEY2Z4dam5nVqaziEMeQmNjAYr5wwB89jrujFETFak","block_timestamp":"1729694693743116047","block":{"block_height":131019633},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.023075190848e20,"args":"{\"proposal_id\": 95}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.430719324129e20}},{"id":"9465162954","receipt_id":"GXnuDZkSfDTArdnZGBQFCQw7tjmrggj8AykWHHduPXQi","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7SM65RCE5xanJ7shH9DfdP1nojRSN2JpNbWjpp2U6Luz","block_height":131019637,"block_timestamp":1729694698914764500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"DQXypNDmYxmoLdG6UmuYJVuLWCdJ5tDv9vyPcoxW3ya2","included_in_block_hash":"3EvEY2Z4dam5nVqaziEMeQmNjAYr5wwB89jrujFETFak","block_timestamp":"1729694693743116047","block":{"block_height":131019633},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.430719324129e20}},{"id":"9465234756","receipt_id":"FpVHN8MCR59xXTzQoyJXEBpfuaJefXUk7yh5CYe26EHN","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EyGWEoJMZr6xnTWeq7pjZP36bG7bcTCwhmYJCFWkREtN","block_height":131019794,"block_timestamp":1729694875815165700},"receipt_outcome":{"gas_burnt":2797236915306.0,"tokens_burnt":2.797236915306e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"zBuP1yp35muPR4DEKLFyx36YKs4yXczBtgYugqf73Av","included_in_block_hash":"Ce6M7YrH4kVbri23piYdL7UL5c2AUcjmXxyikaFK7j2","block_timestamp":"1729694874639265778","block":{"block_height":131019793},"receipt_conversion_tokens_burnt":"31807308015000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.797236915306e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing threshold 2\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.115309995456e20}},{"id":"9465241758","receipt_id":"52xZ4sP12HyBftT98RbT2iamqwBm97gU5maEKpJRQAfm","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DALsrBAADgysSbsatVR9BXdRt48iaL2NQcrRhAq4d8me","block_height":131019821,"block_timestamp":1729694905915247000},"receipt_outcome":{"gas_burnt":3129048824302.0,"tokens_burnt":3.129048824302e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7uZpCiHX26vGYsPJHBptZFRkGqz1hJSXVymk2uBMcgNv","included_in_block_hash":"2K2ATRuMdDHdFL3xiGqP8Mj4LzAFZ9TGYQwQyZaa877B","block_timestamp":"1729694904799099676","block":{"block_height":131019820},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.129048824302e20,"args":"{\"id\": 96, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.662341286547e20}},{"id":"9465242279","receipt_id":"4WmZYkNhYEquShhnBw8sbsv5P3Ldn2Cx6TTeHpfd9bYq","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"F9scyiQ1S126vr8YHq9rPms4YTNZixJqYcFeohLQmTsa","block_height":131019822,"block_timestamp":1729694907121671000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"7uZpCiHX26vGYsPJHBptZFRkGqz1hJSXVymk2uBMcgNv","included_in_block_hash":"2K2ATRuMdDHdFL3xiGqP8Mj4LzAFZ9TGYQwQyZaa877B","block_timestamp":"1729694904799099676","block":{"block_height":131019820},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.662341286547e20}},{"id":"9465369927","receipt_id":"ENdNxp3yvE3xLDMMK86Da2KdFnempEvfGdW3kQTEVpV7","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4rqVEXZS8GEvLK3kAYezbpEAJsGT7ymNcqczwFyVcXPn","block_height":131020116,"block_timestamp":1729695236393061600},"receipt_outcome":{"gas_burnt":3715649522108.0,"tokens_burnt":3.7156495221080005e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"DbXjQcRCEaFLPSEtEeAHrUAxG5fqW36gTWDAyo3kvSw4","included_in_block_hash":"53Vy4k5dLkYFDzCqW4jBRDmRckFEEBYqJpRpP1s8ENxR","block_timestamp":"1729695235172289530","block":{"block_height":131020115},"receipt_conversion_tokens_burnt":"43632869335000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.7156495221080005e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"frol.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"freski.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"meghagoel.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"0\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": [0, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.151978215458e20}},{"id":"9465394589","receipt_id":"914PYPjyidBgbDrVSPKA69dapjXtS4qqAX7WTQZbjjee","predecessor_account_id":"meghagoel.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"AgzgkRZ58PX3yTc7wraVfq4F44ZQnDmsp72qAHgeiQ25","block_height":131020192,"block_timestamp":1729695320972356400},"receipt_outcome":{"gas_burnt":4373069183711.0,"tokens_burnt":4.373069183711e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"EoNKkgpq1j5QFUMMMMXyhNq7CcAXMXZaH6spZHrUwRfH","included_in_block_hash":"GJr9nYjWPCk4ZrmNCh6smRkifreC5ek8YauFGM8UBKzZ","block_timestamp":"1729695319947424723","block":{"block_height":131020191},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.373069183711e20,"args":"{\"id\": 97, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.906409329671e20}},{"id":"9465395138","receipt_id":"92G2c4VmAkruCEzJB5kwVxqffMLyXmuWkyS1ZgiZscfd","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9YuCpFvGkZ3XjbQ1UNiwdRu4sFamND5Ze278JXvrjKBe","block_height":131020193,"block_timestamp":1729695321972176000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"EoNKkgpq1j5QFUMMMMXyhNq7CcAXMXZaH6spZHrUwRfH","included_in_block_hash":"GJr9nYjWPCk4ZrmNCh6smRkifreC5ek8YauFGM8UBKzZ","block_timestamp":"1729695319947424723","block":{"block_height":131020191},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.906409329671e20}},{"id":"9465447896","receipt_id":"DEh1Z7CvNQJPEW5Qj2CUPFoqQGY1P5BEyseBpVTws72i","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"H2hfaHiZfnzD6Z5tgGJxS62mm2wtRquriHj4DNfksPYz","block_height":131020311,"block_timestamp":1729695451353423400},"receipt_outcome":{"gas_burnt":2810886040264.0,"tokens_burnt":2.810886040264e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GtVaXQUYcCcwfMxFoKqjY3S7NkiH2XbnjT1PFUMC5GP","included_in_block_hash":"XVcN9VnfLVWkquww8F3k5m1xXXDBd8GgJw8KNzhA2p4","block_timestamp":"1729695450415728104","block":{"block_height":131020310},"receipt_conversion_tokens_burnt":"31726245699500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.810886040264e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing threshold 3\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.128148497259e20}},{"id":"9465474573","receipt_id":"GVGbFsC2Raa7HenMme4x37FtivrYMavBxFzb3PkY9J3R","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ERLGxkgKHxrGX3rzaUe3a8J7mLSgcFqpsK4g8c2jtBHv","block_height":131020351,"block_timestamp":1729695499211858400},"receipt_outcome":{"gas_burnt":3651396051765.0,"tokens_burnt":3.651396051765e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HLzXRc2yRhNzueAjw4369LqCwpLUTsSkRXX1V67uFJfk","included_in_block_hash":"GcH45mcHt1XeHbUfKweZrkjgxJ1C7s2XeQpznch2YJtW","block_timestamp":"1729695498231549618","block":{"block_height":131020350},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.651396051765e20,"args":"{\"id\": 98, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.486599853438e20}},{"id":"9465475314","receipt_id":"8RvgEHP4vncRQqe97x9tzTvZ5FVmCizA1Z87GvaZfasc","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DAQjgzs2QNAL6at1tUKNRWuqSnfTz28qpxJ6erNKyXmB","block_height":131020352,"block_timestamp":1729695500231347000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"HLzXRc2yRhNzueAjw4369LqCwpLUTsSkRXX1V67uFJfk","included_in_block_hash":"GcH45mcHt1XeHbUfKweZrkjgxJ1C7s2XeQpznch2YJtW","block_timestamp":"1729695498231549618","block":{"block_height":131020350},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e22,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.486599853438e20}},{"id":"9465475318","receipt_id":"HKEMMNwaDf25rd4fLN8w3JC9tPNgU6WQp9h1rBgpdT4z","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DAQjgzs2QNAL6at1tUKNRWuqSnfTz28qpxJ6erNKyXmB","block_height":131020352,"block_timestamp":1729695500231347000},"receipt_outcome":{"gas_burnt":3078728776928.0,"tokens_burnt":3.078728776928e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HLzXRc2yRhNzueAjw4369LqCwpLUTsSkRXX1V67uFJfk","included_in_block_hash":"GcH45mcHt1XeHbUfKweZrkjgxJ1C7s2XeQpznch2YJtW","block_timestamp":"1729695498231549618","block":{"block_height":131020350},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.078728776928e20,"args":"{\"proposal_id\": 98}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.486599853438e20}},{"id":"9465476251","receipt_id":"7Sf6F8kXYXJucwXvGWf2YFNYtkMVX4hsDGe4G8KRyM54","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BvCpA1tciaJcVwPuZZuBAFrKoHm382Fh2ckqPE45kmmA","block_height":131020354,"block_timestamp":1729695502360039400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"HLzXRc2yRhNzueAjw4369LqCwpLUTsSkRXX1V67uFJfk","included_in_block_hash":"GcH45mcHt1XeHbUfKweZrkjgxJ1C7s2XeQpznch2YJtW","block_timestamp":"1729695498231549618","block":{"block_height":131020350},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.486599853438e20}},{"id":"9465622045","receipt_id":"7yXiMj5AJ3v3osTEoC8hBbgW3LsCoLExErn4n9x3Z7Qe","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2HqPhAzghephZieUVbvEBuz2LouwETvDgS86YsT3A653","block_height":131020649,"block_timestamp":1729695835681025300},"receipt_outcome":{"gas_burnt":3686252156590.0,"tokens_burnt":3.68625215659e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7bHKoNEHeKTUMw1XChK5XtJGEWQhqUfBx5LCtj7p6Rs5","included_in_block_hash":"9q4Uptt9YD8YSgC8US6sUpQJgcjLFEJrafzzCRdfRAFY","block_timestamp":"1729695834674333347","block":{"block_height":131020648},"receipt_conversion_tokens_burnt":"43942813482500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.68625215659e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"frol.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"freski.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"freski.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.1256802914150004e20}},{"id":"9465641788","receipt_id":"CjRFkWpBEcBTvGKoxDMNdBnAqdMYcT9SbRCxZRMBCji9","predecessor_account_id":"meghagoel.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FZ8DeMqGPAYAVcyVowpfp3i5uVtFouYH7XzPiGa138nq","block_height":131020708,"block_timestamp":1729695902170274300},"receipt_outcome":{"gas_burnt":4333126271639.0,"tokens_burnt":4.333126271639e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"3LDtjUR3WMDu8ncYrAEjdQt1hdo7wdYvHNCjbpBydSon","included_in_block_hash":"BmZ68NH7YdHfELnQHVBQya82x4xd3RWVnasAHgS7K43T","block_timestamp":"1729695900849599815","block":{"block_height":131020707},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.333126271639e20,"args":"{\"id\": 99, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.8664664175989994e20}},{"id":"9465642288","receipt_id":"Bh9CL5KvgKtm3f8wa3pa6HSHRPgq7v8q64EQWCzthVtb","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6BdKF4hmERuWHdi1v1D96V9M4ptFouqEyU6FCJ53EKyf","block_height":131020709,"block_timestamp":1729695903322148600},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"3LDtjUR3WMDu8ncYrAEjdQt1hdo7wdYvHNCjbpBydSon","included_in_block_hash":"BmZ68NH7YdHfELnQHVBQya82x4xd3RWVnasAHgS7K43T","block_timestamp":"1729695900849599815","block":{"block_height":131020707},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.8664664175989994e20}},{"id":"9465694313","receipt_id":"9MP6qX59MyKXtmeTnxFTKWbqnVfqbLp3iJSifhqVpDLr","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FPCT429H6bFMPRUR3K4CZxiZKEJ4mFXpYUGBCXJMtS8n","block_height":131020829,"block_timestamp":1729696047066872600},"receipt_outcome":{"gas_burnt":3634859504812.0,"tokens_burnt":3.6348595048120005e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CjvCM6HvSKDi1kf88uTtYcnJaJ2KMv7ESQsCip8eaWrP","included_in_block_hash":"AfFQyogwvEJfBhQCDDAKpioFwoULfotHEbn6SNBobjnT","block_timestamp":"1729696045983169094","block":{"block_height":131020828},"receipt_conversion_tokens_burnt":"43613795849000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.6348595048120005e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\", \"frol.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"petersalomonsen.near\", \"thomasguntenaar.near\", \"freski.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"meghagoel.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"3\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.070997463302e20}},{"id":"9465732640","receipt_id":"5mM56wKAZDi7fKLA1RpkJ2L9cj9cjrYmxYJRWrwJykWj","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Fy8m3gQJUdpZLuUgWRKbuEmMfxQhgvfF17BjBNysLgHh","block_height":131020940,"block_timestamp":1729696170141609000},"receipt_outcome":{"gas_burnt":4420174965825.0,"tokens_burnt":4.420174965825e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"xeYfpZPJZc2w3orcpCozVpJ7m39fFh6DHf7LhhwBAXq","included_in_block_hash":"8K1sb6EN9fvNpmDbm7R6g5uHHb7YXomNoJZctZJE8rJT","block_timestamp":"1729696169045417044","block":{"block_height":131020939},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.420174965825e20,"args":"{\"id\": 100, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.9535627955000004e20}},{"id":"9465732946","receipt_id":"5iSWrgFN82NZ9hwp2dmAqaky2e8tH6zLLgp976pghB8G","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5QU94JEnGvBcUw8c9tXSjCafkVzZmQEGvvMxhJrGbmDp","block_height":131020941,"block_timestamp":1729696171349122000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"xeYfpZPJZc2w3orcpCozVpJ7m39fFh6DHf7LhhwBAXq","included_in_block_hash":"8K1sb6EN9fvNpmDbm7R6g5uHHb7YXomNoJZctZJE8rJT","block_timestamp":"1729696169045417044","block":{"block_height":131020939},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.9535627955000004e20}},{"id":"9465751052","receipt_id":"BK7QSJgb1Gn2G75EDGDzrAKeVZtfBore35xcmhurSDtH","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"54SSdtFd9y1VSvrkxpc8UsZbKeqVRMoLUyarEomSM89w","block_height":131021003,"block_timestamp":1729696249145290800},"receipt_outcome":{"gas_burnt":2730274359513.0,"tokens_burnt":2.730274359513e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"699WYELAzzhnrJUNRW2poVo15t7qpaHZsmrTo154kpsv","included_in_block_hash":"1BBx55bkuk23EteZaghBuYqh3kikqFa6JHQXt2x2EqU","block_timestamp":"1729696248173620306","block":{"block_height":131021002},"receipt_conversion_tokens_burnt":"31807308015000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.730274359513e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing threshold 4\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.048347439663e20}},{"id":"9465756200","receipt_id":"4DP6Wh2tbzmysSGcwNpwqMwEmeCxQNPiUY42hQXJyhHj","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9LugdfQmmFTyyHQZM98WiPjxTEZVsjVCqKSS2E72tCoJ","block_height":131021022,"block_timestamp":1729696270582976300},"receipt_outcome":{"gas_burnt":2905497861309.0,"tokens_burnt":2.9054978613090003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"4fhaApFp9xmD4s5y2HCYsxz5b4garhmvfJSEaTpipFtt","included_in_block_hash":"7RAgeeWz9Y9v7DLhfJqK3ZA78ip69QBmtsM2Z9BZGASN","block_timestamp":"1729696269390546649","block":{"block_height":131021021},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.9054978613090003e20,"args":"{\"id\": 101, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.215703128484e20}},{"id":"9465762817","receipt_id":"6PepbLBBuvupdseMysdH8MrGrynvNT27ftEy2bmMBwC1","predecessor_account_id":"meghagoel.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6FytHEubds8d3JTnCVZ3N4Rk6Kk4cWWQzRyYE3rKSAP5","block_height":131021047,"block_timestamp":1729696299141395200},"receipt_outcome":{"gas_burnt":3566058314616.0,"tokens_burnt":3.566058314616e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"97qWg5ULeALxGGNiBjAdtvbrWoFRsvPsy7ayhJECZgjm","included_in_block_hash":"x9s2i14ZFBCpEm1bsu9euA2GRaHZBkQTS2SR9ywQJuw","block_timestamp":"1729696298090352442","block":{"block_height":131021046},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.566058314616e20,"args":"{\"id\": 101, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.357287682179e20}},{"id":"9465763191","receipt_id":"HA9DiGLeeFjYxsMuk1JeST5gyQasP8XRNzLjWvhh7ECt","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DJpGD2ZctdrStTXoE3AbnK6GebUQNgYvHtZ7TndPx9EP","block_height":131021048,"block_timestamp":1729696300268033300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"97qWg5ULeALxGGNiBjAdtvbrWoFRsvPsy7ayhJECZgjm","included_in_block_hash":"x9s2i14ZFBCpEm1bsu9euA2GRaHZBkQTS2SR9ywQJuw","block_timestamp":"1729696298090352442","block":{"block_height":131021046},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":1e22,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.357287682179e20}},{"id":"9465763192","receipt_id":"A1hWxY91kBkEu5rUXPoJr4TqrnEk9Zb1juLRES5QBzoH","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DJpGD2ZctdrStTXoE3AbnK6GebUQNgYvHtZ7TndPx9EP","block_height":131021048,"block_timestamp":1729696300268033300},"receipt_outcome":{"gas_burnt":3034658975388.0,"tokens_burnt":3.0346589753880006e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"97qWg5ULeALxGGNiBjAdtvbrWoFRsvPsy7ayhJECZgjm","included_in_block_hash":"x9s2i14ZFBCpEm1bsu9euA2GRaHZBkQTS2SR9ywQJuw","block_timestamp":"1729696298090352442","block":{"block_height":131021046},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.0346589753880006e20,"args":"{\"proposal_id\": 101}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.357287682179e20}},{"id":"9465763691","receipt_id":"E2i1mvXwZHBejraswuFchci7wfQneADkVLneTCEFvGaj","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HXdqgT3juLfLzFq7x5yoz3bsYQaDxssTPLhHDeUmbgz9","block_height":131021050,"block_timestamp":1729696302441386000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"97qWg5ULeALxGGNiBjAdtvbrWoFRsvPsy7ayhJECZgjm","included_in_block_hash":"x9s2i14ZFBCpEm1bsu9euA2GRaHZBkQTS2SR9ywQJuw","block_timestamp":"1729696298090352442","block":{"block_height":131021046},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":7.357287682179e20}},{"id":"9465817356","receipt_id":"DjRwabW3fm4pp8yjkJ19RR6TLSDxD9xYTVpyq42y5tHQ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"29TM2LxgSknmnirojTofsrGU2jT7SiseGFYUgJLYiVCB","block_height":131021210,"block_timestamp":1729696479632381000},"receipt_outcome":{"gas_burnt":2727931734637.0,"tokens_burnt":2.727931734637e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7YJxFGX8PEaWF2CBejFkqfXzHtD5ZnS1GcrKjN7Bog3j","included_in_block_hash":"5yUQNmGyaBsSXmMesS9fEvQKDAj9MKcNnWWykSKnoWi3","block_timestamp":"1729696478476812340","block":{"block_height":131021209},"receipt_conversion_tokens_burnt":"31740550814000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.727931734637e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing threshold 5\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.045337242777e20}},{"id":"9465897887","receipt_id":"HPwLZfjuKxnoD77rBuZjUvAnPYHeS9pJ2P2Kn3XxDhbt","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DLaZcops3xm2nVtgC1y4dvDCUiNbJg4hCtHKBnKUqpfb","block_height":131021456,"block_timestamp":1729696755666443800},"receipt_outcome":{"gas_burnt":2986686312737.0,"tokens_burnt":2.986686312737e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9j7CrzkgRSB9ny2DrWoMznyWbUZunTgt8EkjJgEeBMf5","included_in_block_hash":"9q3HMkAnn4Aw4ccYMV7nNndZUHL6WAEHBisutqnoEiM2","block_timestamp":"1729696754566412675","block":{"block_height":131021455},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.986686312737e20,"args":"{\"id\": 102, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.296843896197e20}},{"id":"9465898866","receipt_id":"2Q39RHAric1exJ31uZLjopXcNnCKc4t8SuMzgH7qXqUB","predecessor_account_id":"meghagoel.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5FbtohQj8HKe2avTWFGxEscXUoayX4pE7xzYoZCEHDg","block_height":131021477,"block_timestamp":1729696778274181600},"receipt_outcome":{"gas_burnt":3166985938928.0,"tokens_burnt":3.166985938928e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"51TNDJki1sZhNCuhHGVQobYE7LRb2MqkSJZzczT2RMwo","included_in_block_hash":"127Djb7xSqUvyh4nozQu9JLPFVnXLmDP4b4GXpvfQ6BT","block_timestamp":"1729696777231954384","block":{"block_height":131021476},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.166985938928e20,"args":"{\"id\": 102, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.700326084888e20}},{"id":"9465898915","receipt_id":"9dEyfpUDuZzzYsuLFVcFmi3Kem3Xtvc4aejmy1wMqbEg","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3iPJN9hEVuUjGP8aF5B9CciDPLwUeRXsYeV2AYpiwDWk","block_height":131021478,"block_timestamp":1729696779441702400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"51TNDJki1sZhNCuhHGVQobYE7LRb2MqkSJZzczT2RMwo","included_in_block_hash":"127Djb7xSqUvyh4nozQu9JLPFVnXLmDP4b4GXpvfQ6BT","block_timestamp":"1729696777231954384","block":{"block_height":131021476},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.700326084888e20}},{"id":"9639406315","receipt_id":"J99Q56yYDsVkBud2LsjNHGqKfgpXrneBBLLj9nWqVRYo","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"98p6VmzkBVmra3cW9xYEE7pg1co3Vru8dUmYEoNG8FVh","block_height":131498940,"block_timestamp":1730232464260161800},"receipt_outcome":{"gas_burnt":3663177274051.0,"tokens_burnt":3.663177274051e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CABnU4dFHHjeqos2KN7GQf935XhswhTEoLig6KZBHDAc","included_in_block_hash":"DFfRWVMxMBw7X1qhMtPLHTdJB2GWdyMFi489RNy3p9es","block_timestamp":"1730232463146452282","block":{"block_height":131498939},"receipt_conversion_tokens_burnt":"43613795849000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.663177274051e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"meghagoel.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"2\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update Policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.0993152325410003e20}},{"id":"9639407372","receipt_id":"HjQemuKA2njFhPnb837QcsfvsGdHgmjYaSgVwHMrZuF4","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7WX3PGoTkAyksKVX8ErsqCcMUKzuQyUByKr32LDpiHEM","block_height":131498944,"block_timestamp":1730232468677614300},"receipt_outcome":{"gas_burnt":4404904202595.0,"tokens_burnt":4.404904202595e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"DuPkW73eFtc8RDmw7GAppq6EwKtZva6ynEc9aYuTyp2E","included_in_block_hash":"3MS8L1YpRKjkH1L7HXR24fuVLZHSDtqMQaLD8Wgeu8Ph","block_timestamp":"1730232467595634549","block":{"block_height":131498943},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.404904202595e20,"args":"{\"id\": 103, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.9382920322700005e20}},{"id":"9639407635","receipt_id":"eNULEYjRbfKVfcZHWbdyUnuvEe6JhZFooq3fhb7R9WH","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2oj7XAHVPraTEna9B9zyUqfDSw7DdGFXqWRVPBQkAsAt","block_height":131498945,"block_timestamp":1730232469782775800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"DuPkW73eFtc8RDmw7GAppq6EwKtZva6ynEc9aYuTyp2E","included_in_block_hash":"3MS8L1YpRKjkH1L7HXR24fuVLZHSDtqMQaLD8Wgeu8Ph","block_timestamp":"1730232467595634549","block":{"block_height":131498943},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.9382920322700005e20}},{"id":"9639458825","receipt_id":"28H8eYJAnHpwbjPEwRHDppeY6F3VrV6NwMXJRTpdjS7N","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DKXxkB2zz4VZsXRsFLzjwZfYxbo9vsFHw6HciQ8Wp8L7","block_height":131499093,"block_timestamp":1730232632654532900},"receipt_outcome":{"gas_burnt":3621711406273.0,"tokens_burnt":3.621711406273e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9x3jrnoDvjg5zi4rpk3kc5oRqKYFqeNcJA3HmjWgsA4i","included_in_block_hash":"89VNasQgbeoYTaagYMuDRUWvZ8euhvgzJyNVdoM9u2pH","block_timestamp":"1730232631558681938","block":{"block_height":131499092},"receipt_conversion_tokens_burnt":"43613795849000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.621711406273e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"meghagoel.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update Policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.0578493647629995e20}},{"id":"9639461256","receipt_id":"Cd3yrXWzZRiCtuxR9XVhoBGDhFzpbkD7zEUM8wwm3DxZ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"19oywfPKTuYTH75r6KzjSaRbYDY92j3FmUM8dE6NEKi","block_height":131499097,"block_timestamp":1730232637084253000},"receipt_outcome":{"gas_burnt":4363438334817.0,"tokens_burnt":4.363438334817e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GyYeSTKWfej17Vr8Gr6bGntDYTbZWpLAoVzpm3P7fUVt","included_in_block_hash":"AttjBL5kZ7LSRFGVnnaSqihc8hwgKRTh34GTTFihZLx4","block_timestamp":"1730232635894452860","block":{"block_height":131499096},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.363438334817e20,"args":"{\"id\": 104, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.896826164492e20}},{"id":"9639462362","receipt_id":"4oEM29kgXZX8HdQmyzxZLuQehx4WMDvxHDvb3RywFsMY","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"67nfuckPf5WE9MsHf8k8z16o7MVcLuDMe5zSSvt2unEL","block_height":131499098,"block_timestamp":1730232638220891100},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"GyYeSTKWfej17Vr8Gr6bGntDYTbZWpLAoVzpm3P7fUVt","included_in_block_hash":"AttjBL5kZ7LSRFGVnnaSqihc8hwgKRTh34GTTFihZLx4","block_timestamp":"1730232635894452860","block":{"block_height":131499096},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.896826164492e20}},{"id":"9657516724","receipt_id":"F741xFJXAHSpb8KZgVqAuFsq6qP7iNRCEBGXji83HXgX","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"85riUGXAf1fqzc5Wz77exQpavyftf3GJC4yqgLUhrVwk","block_height":131549384,"block_timestamp":1730288755640145700},"receipt_outcome":{"gas_burnt":3762999910213.0,"tokens_burnt":3.762999910213e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GgqJWiXjQmF75T3by3r5wt8vUaLLRtY9hphhSn3k1Eep","included_in_block_hash":"BYQkDXwMJRpVo34LSo7pNQ5m4dJAKnxr77HFERRL4o4T","block_timestamp":"1730288754488265098","block":{"block_height":131549383},"receipt_conversion_tokens_burnt":"43842677681000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.762999910213e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"meghagoel.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [2, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update Policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.201426687023e20}},{"id":"9657517540","receipt_id":"Gz7LtrejQ3vpdDBLwNHxsrFc1f5AjdxfWhab7wPMEkoD","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"82mQSnHjAbumTvSBbaXDiLJDE3LDVhnxzTwdgEqZ9ber","block_height":131549388,"block_timestamp":1730288760503110000},"receipt_outcome":{"gas_burnt":4328705902143.0,"tokens_burnt":4.328705902143e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"4YovMYz3XAdD3TgWXPr7DaMxWz7hminhTUNrKTU5xRE5","included_in_block_hash":"2qpTKBTWm2gzvBzJ7WFVbizBhgrcCLT7cTh8FVSipLwL","block_timestamp":"1730288759360890232","block":{"block_height":131549387},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.328705902143e20,"args":"{\"id\": 105, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.862093731818e20}},{"id":"9657517958","receipt_id":"8B89y2dq6cF24cE4oYezEWk2NE8gbmzQ7auJAd4xTJUY","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"J2eQCFBeoB2U169oS1FEqnnRJUGh6FdFTQZnpyGZ9g4o","block_height":131549389,"block_timestamp":1730288761371390200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"4YovMYz3XAdD3TgWXPr7DaMxWz7hminhTUNrKTU5xRE5","included_in_block_hash":"2qpTKBTWm2gzvBzJ7WFVbizBhgrcCLT7cTh8FVSipLwL","block_timestamp":"1730288759360890232","block":{"block_height":131549387},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.862093731818e20}},{"id":"9657577698","receipt_id":"8isqvrPuEJon4Xjep2gLAK5yCQevhddtXoJ1hTkbdenv","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"A7UviBdada59hcTZSktRGeSU7ygtuBdHvB8iprfUUVNT","block_height":131549598,"block_timestamp":1730288992722970600},"receipt_outcome":{"gas_burnt":3849887639077.0,"tokens_burnt":3.849887639077e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CZTRLQN6WzTjxDVU8PWAPHL6BZBrpj46jiNRutUKgJQN","included_in_block_hash":"5rCCyYaEEKngPLaVwABVBDwrd1QzZ8XyV3Mu29wXqCfS","block_timestamp":"1730288990193851106","block":{"block_height":131549596},"receipt_conversion_tokens_burnt":"43899898139000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.849887639077e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"meghagoel.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update Policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.288886620467e20}},{"id":"9657579173","receipt_id":"6fi2saW5SEy9tjwqhNoZ5gStriCUEDiJT6E9A6tmsmgk","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HXCa5NfDNufdKSM1UrSemUhqWZwqRnwVrzy4cGoeBd3j","block_height":131549601,"block_timestamp":1730288996493772500},"receipt_outcome":{"gas_burnt":4330769374191.0,"tokens_burnt":4.330769374191e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"B6HonQkz7HN3MYZdioLZuL5mzy8M8MAUPdJWCLuhBNpc","included_in_block_hash":"57c3hqzegiZbPVFqAcc3hc3bn1je4CAijv7NGNA6AJa","block_timestamp":"1730288995284962424","block":{"block_height":131549600},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.330769374191e20,"args":"{\"id\": 106, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.8641572038660004e20}},{"id":"9657580349","receipt_id":"8qk9iBLgyW5ChRjF3nHdQdBr9k5uZzAjCxRXTUX7nZeN","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HM4vp46Hx1tnuhNWbzVcEf2GRXUJ2EddDY4dEgiQwfzz","block_height":131549602,"block_timestamp":1730288997703550200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"B6HonQkz7HN3MYZdioLZuL5mzy8M8MAUPdJWCLuhBNpc","included_in_block_hash":"57c3hqzegiZbPVFqAcc3hc3bn1je4CAijv7NGNA6AJa","block_timestamp":"1730288995284962424","block":{"block_height":131549600},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.8641572038660004e20}},{"id":"9872698821","receipt_id":"7TZucsv4JThemxzHpMjDpdmhtbnsikz7S7a7A9uXjfB6","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7ZUDhJ9gRtibHJuSvh75tozg4YKP1bK3JbD88hygUJLB","block_height":132098746,"block_timestamp":1730907018882665000},"receipt_outcome":{"gas_burnt":3853958283405.0,"tokens_burnt":3.853958283405e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GpAT77RNtWHakaoR1QtuqcDcr7cNZpBekMfmP9bJpHmG","included_in_block_hash":"FUDNJmutGXxSipUcHSswu9BWAztLnvwFDAxgDABeiJPj","block_timestamp":"1730907017404255470","block":{"block_height":132098745},"receipt_conversion_tokens_burnt":"43966655340000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":3.853958283405e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"megha19.near\", \"meghagoel.near\", \"freski.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.293624836805e20}},{"id":"9872699814","receipt_id":"EHHKUnJEZCTXrUExVreLDhFyBkyFJSmV5aAGwPN5jUCs","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9eP5K7LBHcUKLSbLUXj9H7izXesuC1EjinqgzSvLcPsb","block_height":132098750,"block_timestamp":1730907023625926100},"receipt_outcome":{"gas_burnt":4340477065850.0,"tokens_burnt":4.34047706585e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9pcfKRDBmspMsChfDf6YMVemNNJ6KY6WiJmEBEBJYoSu","included_in_block_hash":"Cep98QVLuUByByu1UvSNV6JHhHZXzafKFTmwHW94Ax9u","block_timestamp":"1730907022329360387","block":{"block_height":132098749},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.34047706585e20,"args":"{\"id\": 107, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.873864895525e20}},{"id":"9872700082","receipt_id":"HZHGNgBDMRHBLceViMSiehC8Ew5wTudoj7VGw22MzbJn","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7zrxCK85jNuFqaA4WTXYVEWEe5qHRnjsEvH71fXvPcSg","block_height":132098751,"block_timestamp":1730907024993283300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"9pcfKRDBmspMsChfDf6YMVemNNJ6KY6WiJmEBEBJYoSu","included_in_block_hash":"Cep98QVLuUByByu1UvSNV6JHhHZXzafKFTmwHW94Ax9u","block_timestamp":"1730907022329360387","block":{"block_height":132098749},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.873864895525e20}},{"id":"9937793188","receipt_id":"Dt4uSvB8LT4umbRq84doqFH7LDmw2i77TT2g7qQPRUj8","predecessor_account_id":"freski.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"FahhqhhecEgvau2PKJt64NL2Y6ktaAp6U1dMTaNQVssX","block_height":132241685,"block_timestamp":1731083374324296700},"receipt_outcome":{"gas_burnt":2748377028313.0,"tokens_burnt":2.748377028313e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CRSMoU5wfQkLVPeShowipjUT6ycTzNGsFSAZmT96Zj1w","included_in_block_hash":"91osS3DUzWdbZGHQe1YpZZv8uAqwmZvNhbzgrWmAFQjF","block_timestamp":"1731083373020563387","block":{"block_height":132241684},"receipt_conversion_tokens_burnt":"32184009363500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.748377028313e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJhbW91bnQiOiIxMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==\", \"deposit\": \"0\", \"method_name\": \"unstake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.0702171219480006e20}},{"id":"9937806152","receipt_id":"B13VvmVstJLMuZxjVv6GaaGRCtAx9JaWzQJqsPr7jFZJ","predecessor_account_id":"freski.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5SzPW9hPvjepAbQeoo4TaKT9f5oKnVWWQyvTNhpbqLKt","block_height":132241715,"block_timestamp":1731083409048662800},"receipt_outcome":{"gas_burnt":3766451137495.0,"tokens_burnt":3.766451137495e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7Li9UBVKD7FcsA16iF55z8ckinvtx9x6UsVqSAJS1Akh","included_in_block_hash":"DuRy1Caw6FkrkK2onKv16vsGyJ4vuc8pYETBBvMUVhPL","block_timestamp":"1731083407915413427","block":{"block_height":132241714},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.766451137495e20,"args":"{\"id\": 108, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2293342759875e21}},{"id":"9937807027","receipt_id":"AjUbPsHS1gCA6A6qSNCuQ4xEoyAGFWBpq5NtSdKs8KF1","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"astro-stakers.poolv1.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6Ni3Z34C9rpM6Nvg56yLbykQJcoFgGtmrRuqbS9uUcDW","block_height":132241716,"block_timestamp":1731083410024820700},"receipt_outcome":{"gas_burnt":3045302548294.0,"tokens_burnt":3.045302548294e20,"executor_account_id":"astro-stakers.poolv1.near","status":true},"transaction_hash":"7Li9UBVKD7FcsA16iF55z8ckinvtx9x6UsVqSAJS1Akh","included_in_block_hash":"DuRy1Caw6FkrkK2onKv16vsGyJ4vuc8pYETBBvMUVhPL","block_timestamp":"1731083407915413427","block":{"block_height":132241714},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"unstake","deposit":0.0,"fee":3.045302548294e20,"args":"{\"amount\": \"100000000000000000000000\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2293342759875e21}},{"id":"9937807034","receipt_id":"7n8sXisvBxFvzQFj2iMz7X17oSch7jBTT1WrQjDo1CgD","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6Ni3Z34C9rpM6Nvg56yLbykQJcoFgGtmrRuqbS9uUcDW","block_height":132241716,"block_timestamp":1731083410024820700},"receipt_outcome":{"gas_burnt":3060235156571.0,"tokens_burnt":3.060235156571e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7Li9UBVKD7FcsA16iF55z8ckinvtx9x6UsVqSAJS1Akh","included_in_block_hash":"DuRy1Caw6FkrkK2onKv16vsGyJ4vuc8pYETBBvMUVhPL","block_timestamp":"1731083407915413427","block":{"block_height":132241714},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.060235156571e20,"args":"{\"proposal_id\": 108}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2293342759875e21}},{"id":"9937807875","receipt_id":"GcA8b7iXEKG8XaRb72acbtSFBT8oENpo5vTH4Jt9gYKp","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"freski.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8Li7DLGuHdVx5DE13R2R8bUrCWrPL8u1mzPy5XDkrS5a","block_height":132241718,"block_timestamp":1731083412171026200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"freski.near","status":true},"transaction_hash":"7Li9UBVKD7FcsA16iF55z8ckinvtx9x6UsVqSAJS1Akh","included_in_block_hash":"DuRy1Caw6FkrkK2onKv16vsGyJ4vuc8pYETBBvMUVhPL","block_timestamp":"1731083407915413427","block":{"block_height":132241714},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2293342759875e21}},{"id":"9937844620","receipt_id":"FgaQM3YEJivsidgghed8zhdN4DaQq5bHSsAgjAcXA28k","predecessor_account_id":"freski.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6T79Hc7N6Ev44TFJ8yNsWm4AUf8s7ubao1Tw3ksVUGVj","block_height":132241800,"block_timestamp":1731083516106650600},"receipt_outcome":{"gas_burnt":2746123278609.0,"tokens_burnt":2.746123278609e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"4vCJ2kpEk3T3NqEjHrdswndh4unwZFDSMr3jNDa2hKJU","included_in_block_hash":"Aesd5wy3F2UKgvxDyoEkudQu9idrwouLPyAjjmkvEdS5","block_timestamp":"1731083514873978394","block":{"block_height":132241799},"receipt_conversion_tokens_burnt":"32093410305000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.746123278609e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"\", \"deposit\": \"100000000000000000000000\", \"method_name\": \"deposit_and_stake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.0670573816589995e20}},{"id":"9937856683","receipt_id":"E9vU5XUNut2UGoVpbXGJV9Eye4J2hjJuEC35yaeqZCj","predecessor_account_id":"freski.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6QtihFiGqYzMHMBrJC1wfb1u9LEXxCx5eJH8GRMgQwFu","block_height":132241825,"block_timestamp":1731083548060210700},"receipt_outcome":{"gas_burnt":3675945038254.0,"tokens_burnt":3.675945038254e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"acqcGEMYBofTpxpWzkmZPz6EA2NcLfryx97oeH9xy2S","included_in_block_hash":"J2infZRPHeMz6JJg2W2pL9BtYui9E574t6RJjQHjy9cD","block_timestamp":"1731083547018169631","block":{"block_height":132241824},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.675945038254e20,"args":"{\"id\": 109, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2533224253612e21}},{"id":"9937857332","receipt_id":"F2uUkEYsdgHWWu876aL289RXa7dYiwuTcacA89mZjrS8","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"astro-stakers.poolv1.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Brx9xR9mjtHUfQSigZ1kZ2hSYHcxBo92z9mYiBUfyDHQ","block_height":132241826,"block_timestamp":1731083549157412900},"receipt_outcome":{"gas_burnt":3422519165951.0,"tokens_burnt":3.422519165951e20,"executor_account_id":"astro-stakers.poolv1.near","status":true},"transaction_hash":"acqcGEMYBofTpxpWzkmZPz6EA2NcLfryx97oeH9xy2S","included_in_block_hash":"J2infZRPHeMz6JJg2W2pL9BtYui9E574t6RJjQHjy9cD","block_timestamp":"1731083547018169631","block":{"block_height":132241824},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"deposit_and_stake","deposit":1e23,"fee":3.422519165951e20,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2533224253612e21}},{"id":"9937857335","receipt_id":"6f7eXy2VFS3xigkGCYqnXuXHMcg8RCNnR8vHpJbnzELq","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"Brx9xR9mjtHUfQSigZ1kZ2hSYHcxBo92z9mYiBUfyDHQ","block_height":132241826,"block_timestamp":1731083549157412900},"receipt_outcome":{"gas_burnt":3013406131892.0,"tokens_burnt":3.013406131892e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"acqcGEMYBofTpxpWzkmZPz6EA2NcLfryx97oeH9xy2S","included_in_block_hash":"J2infZRPHeMz6JJg2W2pL9BtYui9E574t6RJjQHjy9cD","block_timestamp":"1731083547018169631","block":{"block_height":132241824},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.013406131892e20,"args":"{\"proposal_id\": 109}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2533224253612e21}},{"id":"9937858426","receipt_id":"4hDXgM9EHNDXQ7Xoezx9Nh35kAcpJFE5U7nhHviXNxrx","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"freski.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"68wSD1ra7wyN17xD1qhK1uQHK6ERGk6mJUYHFcZA2Tpd","block_height":132241828,"block_timestamp":1731083551409171000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"freski.near","status":true},"transaction_hash":"acqcGEMYBofTpxpWzkmZPz6EA2NcLfryx97oeH9xy2S","included_in_block_hash":"J2infZRPHeMz6JJg2W2pL9BtYui9E574t6RJjQHjy9cD","block_timestamp":"1731083547018169631","block":{"block_height":132241824},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2533224253612e21}},{"id":"9967671296","receipt_id":"AKo2bTofCHAtY7N577XVa5KSTusvkTb2bgFhXxPntfvA","predecessor_account_id":"freski.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2YPM5BTv3ThzAULLRnemFrBPLWxURa8kNbkRm7x353ej","block_height":132310069,"block_timestamp":1731165625338553000},"receipt_outcome":{"gas_burnt":2829055014165.0,"tokens_burnt":2.8290550141650004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"96UuBj96EjsJkKCfbaXi6cbKmMWDfnjAHv1SQx9j4RSG","included_in_block_hash":"12yAbACNuhu4ZmLveEttWnd4fyHECTe24DbvBUHQZjjE","block_timestamp":"1731165624538407245","block":{"block_height":132310068},"receipt_conversion_tokens_burnt":"32093410305000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8290550141650004e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"\", \"deposit\": \"100000000000000000000000\", \"method_name\": \"deposit_and_stake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.149989117215e20}},{"id":"9967727468","receipt_id":"FFQMUx2focDGV9knrusa8qQm8tQsxeuSBswQbLqnCKHF","predecessor_account_id":"freski.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8hLFfEEA2fTrr7WV69Nmk61KLCLik22rr7UAS11A7di8","block_height":132310223,"block_timestamp":1731165818304447000},"receipt_outcome":{"gas_burnt":3675945038254.0,"tokens_burnt":3.675945038254e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"24cHvavuaVM1ARJS98nh2EgWVhRfFpRsD5ogaYd9qf1A","included_in_block_hash":"CDt8LBJPnmkmCUESvZ3s6fmn8yrkPxZ8mZfjNtFAvjuU","block_timestamp":"1731165817225133161","block":{"block_height":132310222},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.675945038254e20,"args":"{\"id\": 110, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2533350958036e21}},{"id":"9967727997","receipt_id":"GYrzrGSEQrSneW8grtgoyyvCgs4LkujxW3w2Z7YNDJFD","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"astro-stakers.poolv1.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8CA59X8r1jvxEi6uG5JDJU9ypZBXgm9JazLHmVpu5bsR","block_height":132310224,"block_timestamp":1731165819310336000},"receipt_outcome":{"gas_burnt":3491755650005.0,"tokens_burnt":3.4917556500050005e20,"executor_account_id":"astro-stakers.poolv1.near","status":true},"transaction_hash":"24cHvavuaVM1ARJS98nh2EgWVhRfFpRsD5ogaYd9qf1A","included_in_block_hash":"CDt8LBJPnmkmCUESvZ3s6fmn8yrkPxZ8mZfjNtFAvjuU","block_timestamp":"1731165817225133161","block":{"block_height":132310222},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"deposit_and_stake","deposit":1e23,"fee":3.4917556500050005e20,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2533350958036e21}},{"id":"9967728001","receipt_id":"8TLRbyuHUA164mKwprcApQ6iz8nn9eVdJi11P85k2zK4","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8CA59X8r1jvxEi6uG5JDJU9ypZBXgm9JazLHmVpu5bsR","block_height":132310224,"block_timestamp":1731165819310336000},"receipt_outcome":{"gas_burnt":3013406131892.0,"tokens_burnt":3.013406131892e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"24cHvavuaVM1ARJS98nh2EgWVhRfFpRsD5ogaYd9qf1A","included_in_block_hash":"CDt8LBJPnmkmCUESvZ3s6fmn8yrkPxZ8mZfjNtFAvjuU","block_timestamp":"1731165817225133161","block":{"block_height":132310222},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.013406131892e20,"args":"{\"proposal_id\": 110}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2533350958036e21}},{"id":"9967728573","receipt_id":"7Xe4zDJVDN9qBqrtDjWQgi2ugd2omwh4nozErBAqz1wx","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"freski.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2Bnpaq7Fg5wUmeu3JgcppMBnTh4ZD5dGcdMSc8FWFcsT","block_height":132310226,"block_timestamp":1731165821827648800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"freski.near","status":true},"transaction_hash":"24cHvavuaVM1ARJS98nh2EgWVhRfFpRsD5ogaYd9qf1A","included_in_block_hash":"CDt8LBJPnmkmCUESvZ3s6fmn8yrkPxZ8mZfjNtFAvjuU","block_timestamp":"1731165817225133161","block":{"block_height":132310222},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2533350958036e21}},{"id":"9968045364","receipt_id":"4tQMnh6pt2rsy3pHpoBWyAB4YxpWELnaxpJ6J6JcQL1e","predecessor_account_id":"freski.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"7nZSGxZoqTPXBUnqiBZNNe95JjRe8QM69i7dMyp8XtKF","block_height":132310982,"block_timestamp":1731166694426260700},"receipt_outcome":{"gas_burnt":2831308763869.0,"tokens_burnt":2.8313087638690002e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HcACWdCokDeCfLUmxj8fhwEf6VJu4PrymYndD59kqs41","included_in_block_hash":"8uMPUdzVyHyA6asmqZfrb3rhAhphBV8U6X52cwLVkj8z","block_timestamp":"1731166693120092871","block":{"block_height":132310981},"receipt_conversion_tokens_burnt":"32184009363500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8313087638690002e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJhbW91bnQiOiIxMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==\", \"deposit\": \"0\", \"method_name\": \"unstake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.153148857504e20}},{"id":"9968059918","receipt_id":"6CGYjpXRfVfFtMJNLmC3cxxkPokefkCYnstuqWzQzwsQ","predecessor_account_id":"freski.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3o1TM5WMqoeRDg5gCruSN7yk29o3ZU9nJHCTt3LNSP9o","block_height":132311026,"block_timestamp":1731166742899153400},"receipt_outcome":{"gas_burnt":3766451137495.0,"tokens_burnt":3.766451137495e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5kSE29dnzQcP1isKPTkPAHxLvGdse8fWqJDSxfATKSEj","included_in_block_hash":"9Gx1nEGRs8TWReX4SLkR5DrvMQ8vfTJaNPBs4suz2EH4","block_timestamp":"1731166741806103761","block":{"block_height":132311025},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.766451137495e20,"args":"{\"id\": 111, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2268953670759e21}},{"id":"9968060378","receipt_id":"9B2dNJzovrMX5e8LmxEiKY1AxVbkRjKGWoembFB84QqY","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"astro-stakers.poolv1.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8UdwdrmzpdcDdQt7cehppkVrAz2JjVj3eQeHTKCKiHQb","block_height":132311027,"block_timestamp":1731166743697427200},"receipt_outcome":{"gas_burnt":3048557371030.0,"tokens_burnt":3.04855737103e20,"executor_account_id":"astro-stakers.poolv1.near","status":true},"transaction_hash":"5kSE29dnzQcP1isKPTkPAHxLvGdse8fWqJDSxfATKSEj","included_in_block_hash":"9Gx1nEGRs8TWReX4SLkR5DrvMQ8vfTJaNPBs4suz2EH4","block_timestamp":"1731166741806103761","block":{"block_height":132311025},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"unstake","deposit":0.0,"fee":3.04855737103e20,"args":"{\"amount\": \"100000000000000000000000\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2268953670759e21}},{"id":"9968060379","receipt_id":"7RLrrf5fewHHjv1XNt9pNZ5HGAof4VeAfxEK9YfbhCoG","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8UdwdrmzpdcDdQt7cehppkVrAz2JjVj3eQeHTKCKiHQb","block_height":132311027,"block_timestamp":1731166743697427200},"receipt_outcome":{"gas_burnt":3101701024349.0,"tokens_burnt":3.101701024349e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"5kSE29dnzQcP1isKPTkPAHxLvGdse8fWqJDSxfATKSEj","included_in_block_hash":"9Gx1nEGRs8TWReX4SLkR5DrvMQ8vfTJaNPBs4suz2EH4","block_timestamp":"1731166741806103761","block":{"block_height":132311025},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.101701024349e20,"args":"{\"proposal_id\": 111}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2268953670759e21}},{"id":"9968060712","receipt_id":"Hok2byWwAQym1HvuzvmuurgwGCifcCojQpzE2kiV5iFQ","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"freski.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"A5cJi2XvtCvajpC284n4GLSTGUsE6y91bcy1fHWY8NmQ","block_height":132311029,"block_timestamp":1731166746001639400},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"freski.near","status":true},"transaction_hash":"5kSE29dnzQcP1isKPTkPAHxLvGdse8fWqJDSxfATKSEj","included_in_block_hash":"9Gx1nEGRs8TWReX4SLkR5DrvMQ8vfTJaNPBs4suz2EH4","block_timestamp":"1731166741806103761","block":{"block_height":132311025},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2268953670759e21}},{"id":"9968066800","receipt_id":"41xWTUqX7aeAZjotGWfawMBdkVtvCzx2FGTsKthXhwau","predecessor_account_id":"freski.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9NzGQNY6JVPzBKaYo1JHneHyMiKvxAmBHZHYvNUGWFSM","block_height":132311056,"block_timestamp":1731166776491221000},"receipt_outcome":{"gas_burnt":2810879954867.0,"tokens_burnt":2.8108799548669998e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"76tcfj4jMnWpwqZ3TvPCkjVbpb3mGah9s16ESnvWWnUZ","included_in_block_hash":"Ct696NZsrNztEQMfzrN1AvrRG1C5UTu6t8BJDAdavbJz","block_timestamp":"1731166774973657538","block":{"block_height":132311055},"receipt_conversion_tokens_burnt":"32031421475500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8108799548669998e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJhbW91bnQiOiIwIn0=\", \"deposit\": \"0\", \"method_name\": \"unstake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.1311941696220004e20}},{"id":"9968071866","receipt_id":"58wmhctee5VWqGyrkYJQQk351nbZ6H11GHhdbjoEFtPt","predecessor_account_id":"freski.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5nCNja6xtpDUw58zrdN3Q7hovrAPLhz8rsJq2HUHg16o","block_height":132311079,"block_timestamp":1731166802311923700},"receipt_outcome":{"gas_burnt":3224903944396.0,"tokens_burnt":3.2249039443960005e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"pGhAU8Wo2CDhde9ti6aD9jbuxCnvovyfyV7q1dYd3pk","included_in_block_hash":"9WG42Y4viQ3L7ojELy9W9v8yw9YU98e8PDDifZ6fthyz","block_timestamp":"1731166801116539698","block":{"block_height":132311078},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.2249039443960005e20,"args":"{\"id\": 112, \"action\": \"VoteReject\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.758244090356e20}},{"id":"9968072188","receipt_id":"F3bws6Mttth9jSG6bKQyEinvohwP8GM3QHLiLSvRufYL","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"freski.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"H55krvFqfDqmbFRjmq4gKTdz7cqcyu1DjweZnRhwgzZX","block_height":132311080,"block_timestamp":1731166803333462500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"freski.near","status":true},"transaction_hash":"pGhAU8Wo2CDhde9ti6aD9jbuxCnvovyfyV7q1dYd3pk","included_in_block_hash":"9WG42Y4viQ3L7ojELy9W9v8yw9YU98e8PDDifZ6fthyz","block_timestamp":"1731166801116539698","block":{"block_height":132311078},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.758244090356e20}},{"id":"10141373741","receipt_id":"Dw4fe7zYAzKbPxBNkMGmjo4XWvmFxLdLzhcjqnvz9oB6","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2vyS7dZZvHECXbBkg15VJY5q4oBHn54o47YziWtaepRk","block_height":132751163,"block_timestamp":1731674552392744000},"receipt_outcome":{"gas_burnt":2225363426046.0,"tokens_burnt":2.2253634260460002e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"HNxt6pzkK24umVX7kfK8HvrJ8pwcnRE3fPp7fgT38hRL","included_in_block_hash":"8P1Xi7tDdyjHD9f82hZMuhjyo3CMT43y3bKxhNazjZ1u","block_timestamp":"1731674551161124853","block":{"block_height":132751162},"receipt_conversion_tokens_burnt":"31010989974500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.2253634260460002e20,"args":"{\"id\": 77, \"action\": \"VoteRemove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.535473325791e20}},{"id":"10221362690","receipt_id":"mGYnuc4Pd5DYhCmqH8KWT54GHtZGT2hmoiU2htGQrMK","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EwzCZoBHvZJCR6dv8MYnLWNYeCYCqa2JQ2kUizRooEgP","block_height":132966550,"block_timestamp":1731917343777140500},"receipt_outcome":{"gas_burnt":2750542007327.0,"tokens_burnt":2.7505420073270002e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"6g3W25rEZEDxx3ZEhQyzzYM5B34ochT37W1HeUppYDnQ","included_in_block_hash":"6kMVzU4Tkh1UYnEEGCL4W5cw5ZwmAYzRmn3UKuUhe7Bj","block_timestamp":"1731917342650042995","block":{"block_height":132966549},"receipt_conversion_tokens_burnt":"32517795368500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.7505420073270002e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"200000\", \"token_id\": \"usdt.tether-token.near\", \"receiver_id\": \"maguila.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"title\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-10-14 2024-11-10\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"summary\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Fellowship Contributor report by Matias Benary for 2024-10-14 2024-11-10\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"proposalId\\\\\\\\\\\\\\\":252}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.075719961012e20}},{"id":"10221376958","receipt_id":"7j6EAFfVdLtQYSFiV4wkHNAnzWcvcBP1uWy3XwJrSNf1","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GDAXThHruF5rbbhRipxwJDuaQVQPHBoK8cVvbAqcHRcm","block_height":132966569,"block_timestamp":1731917364951132000},"receipt_outcome":{"gas_burnt":2889821732970.0,"tokens_burnt":2.88982173297e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7UyHZZi8tGMf5PDeuoWvuPq4tRYwXaS9DbpEK7B19kmv","included_in_block_hash":"CCMQSBLLBo7jQxC2SiwPqY7dAgDZZBvt6wawpsuEX4MV","block_timestamp":"1731917363761757699","block":{"block_height":132966568},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.88982173297e20,"args":"{\"id\": 113, \"action\": \"VoteRemove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.19997931643e20}},{"id":"10222766407","receipt_id":"DnQ5Fesd7dCqkcBRwwadBJoTSiKsTRaDimhzL6fboaqJ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"As9zRjFbbs3k9UG4pxoy2o3mEtgQ6putT1w2a8AGR5Uh","block_height":132968706,"block_timestamp":1731919916394594600},"receipt_outcome":{"gas_burnt":2824900147771.0,"tokens_burnt":2.8249001477709998e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"AKienJ6xV7SfkH3crtsbAMRvBbenm2TiwLsrXVcEZtUG","included_in_block_hash":"EjSApLjTnjXjQuyf8Z8tdXDfbATJCB9sgYPByXRTBxyB","block_timestamp":"1731919915119717031","block":{"block_height":132968705},"receipt_conversion_tokens_burnt":"32040958218500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8249001477709998e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"\", \"deposit\": \"0\", \"method_name\": \"deposit_and_stake\"}], \"receiver_id\": \"bisontrails.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"Testing delete\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.145309729956e20}},{"id":"10223016065","receipt_id":"EVwUEVZT2yYXrQjK1MRN5ug6S4EJTFVpik6uFMTPsEto","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"93Xg5YiduUx7tSKNTJgMhRUDx5BZZHndKCYVU92i7J11","block_height":132969003,"block_timestamp":1731920292943543800},"receipt_outcome":{"gas_burnt":2881363929322.0,"tokens_burnt":2.881363929322e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CXZyck2aZRLcmNgvWAqewBiYDSwSmqbbjAq63k6yYvpn","included_in_block_hash":"3sXd1Ef78AckkZE53Pm8KGLRPTVNawNND3tjh19mdrqW","block_timestamp":"1731920291635012734","block":{"block_height":132969002},"receipt_conversion_tokens_burnt":"31015758346000000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":2.881363929322e20,"args":"{\"id\": 114, \"action\": \"VoteRemove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.191521512782e20}},{"id":"10223561156","receipt_id":"G3k7EM5Z68R6A4hLEezgz6u91ByxXWq61cZoiahc3vJt","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4H77qUvmgWQpY3nGcsKFsocgRtMRcA2E3YWqTw4WgwbQ","block_height":132970137,"block_timestamp":1731921611526669300},"receipt_outcome":{"gas_burnt":4181385964947.0,"tokens_burnt":4.181385964947e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CKQ526ayqe9BTvLmrnKx4f85itmCPU5oSeGzCVBHVtXU","included_in_block_hash":"FsLSMBYtiRwN5rsfAYyzcYRBNYR3aGr5Rd48hSQPp5uY","block_timestamp":"1731921610474316671","block":{"block_height":132970136},"receipt_conversion_tokens_burnt":"48143748774000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":4.181385964947e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"transfer:AddProposal\", \"config:Finalize\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"meghagoel.near\", \"freski.near\", \"megha19.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Update policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.662823452687e20}},{"id":"10223703576","receipt_id":"8MxXrtJ9KDLMMxpUCrpDzaZ2BbGv3DJeG29vo2YaU4Y9","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HHfN7wj9hMepnwmAvY3JRwv85iPN738eGDongd8JDR68","block_height":132970408,"block_timestamp":1731921922848291000},"receipt_outcome":{"gas_burnt":4766255324247.0,"tokens_burnt":4.7662553242470004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"Gg6E3qZwLz1yoD3Urr2dqVrppZjkvGmuNpL52zmJVR7k","included_in_block_hash":"HGSxCUWyTLadAxB78VVGJgCehUyJh5CsCyGmqvQRJGz4","block_timestamp":"1731921921705748185","block":{"block_height":132970407},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.7662553242470004e20,"args":"{\"id\": 115, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.299643153922e20}},{"id":"10223704134","receipt_id":"F3A9vkA3K3dDjw9ur8ThsZfUV5juphjD3bEbmRsgoz6d","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"B998A7Vjxr2sqNC7xuTsWmEjukGewTM9Ds8z9ZKEh2Mq","block_height":132970409,"block_timestamp":1731921923899565800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"Gg6E3qZwLz1yoD3Urr2dqVrppZjkvGmuNpL52zmJVR7k","included_in_block_hash":"HGSxCUWyTLadAxB78VVGJgCehUyJh5CsCyGmqvQRJGz4","block_timestamp":"1731921921705748185","block":{"block_height":132970407},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.299643153922e20}},{"id":"10267188839","receipt_id":"HY6g2CLQEjcJr8H2PQ3WggSNuUA1RyhQ1kvyyciB3wpQ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"9tmkZMA59Hark9tLrgQLmCJabCYa3GGYZ2TcRUGPVHYa","block_height":133074696,"block_timestamp":1732042990840714500},"receipt_outcome":{"gas_burnt":4199218390995.0,"tokens_burnt":4.199218390995e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"2VKB4k46UJ2wZwBCBCYXmuyvxoZjXBPyZhXpXmNYtJVV","included_in_block_hash":"DBjRMEsddsSjhpG1cbVgv4ntCmw8TsrA9MJnzhRPxouU","block_timestamp":"1732042989629242995","block":{"block_height":133074695},"receipt_conversion_tokens_burnt":"48253421318500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":4.199218390995e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"*:VoteRemove\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"meghagoel.near\", \"freski.near\", \"megha19.near\", \"petersalomonsen.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.6817526041799996e20}},{"id":"10267189476","receipt_id":"4sZo3jaGm5qysVtaxE7UU2AZTfoviBH3eiAu9kR8JuFc","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"13CdbhRmDvFcE8eFap7TyeqeNkHcpQ19Bcf9o9c5FtSp","block_height":133074699,"block_timestamp":1732042993869794000},"receipt_outcome":{"gas_burnt":4840765398361.0,"tokens_burnt":4.840765398361e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"H678TmCirpe3TyGnALjTaXDH7fZDYRH5nJNoY8vBZadq","included_in_block_hash":"DxLBNGodABBKzeei4uriybnFHS12xeDDHbXSiS7N51bx","block_timestamp":"1732042992756041571","block":{"block_height":133074698},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.840765398361e20,"args":"{\"id\": 116, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.3741532280359997e20}},{"id":"10267189979","receipt_id":"4CUUCxG3eXyAFeji563m5ZndpDQxZ1iX5v2HV1i4V5UT","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"58JuWMXg4gQCu5SiMv6f6UvjqueBE4AzfEqyhyZVdtVm","block_height":133074700,"block_timestamp":1732042994973828600},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"H678TmCirpe3TyGnALjTaXDH7fZDYRH5nJNoY8vBZadq","included_in_block_hash":"DxLBNGodABBKzeei4uriybnFHS12xeDDHbXSiS7N51bx","block_timestamp":"1732042992756041571","block":{"block_height":133074698},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.3741532280359997e20}},{"id":"10372781526","receipt_id":"HXuUiQAviTCNeUPVibVMvuQfSv63yKh9Lm9x7LPfzfUa","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"A4JyJ3unfYJ2czWv9LPa5DFEEpTKAoegeY1YFcuewH14","block_height":133350887,"block_timestamp":1732351572012133000},"receipt_outcome":{"gas_burnt":2239359396995.0,"tokens_burnt":2.239359396995e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":false},"transaction_hash":"eseGU9orFSN42g7cXxfsGpHiT22cMw9C6KvMneYs3pt","included_in_block_hash":"HDuDDLFWqHxZprxzxmRry3wz6y4gv31Y2xa3Z4B1NnA","block_timestamp":"1732351570791569890","block":{"block_height":133350886},"receipt_conversion_tokens_burnt":"31554584325500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.239359396995e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicyUpdateParameters\": {\"parameters\": {\"proposal_period\": \"86400000000000\"}}}, \"description\": \"Change proposal period\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":false},"outcomes_agg":{"transaction_fee":2.55490524025e20}},{"id":"10399998757","receipt_id":"BQYJaZobs2QE8jkxhYoDUq2AH6NtMzpaAVmvDa2dqufh","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"J83W1QfbwsjFMhd7FrFfEBUrNR9ezXP1NRgmE3QSxoQ6","block_height":133424899,"block_timestamp":1732435384406369500},"receipt_outcome":{"gas_burnt":4755068398307.0,"tokens_burnt":4.755068398307e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"4ucJRwdxL2CsA3akNSvyzT5qhLWgLdAXBtQeyQXSEM2b","included_in_block_hash":"63DwVDe3ZNTipHeSrDRC5dmm9bBf1KDhTiVakcqH19r7","block_timestamp":"1732435383163199474","block":{"block_height":133424898},"receipt_conversion_tokens_burnt":"74355486909500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":4.755068398307e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"*:VoteRemove\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\", \"frol.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"policy_update_parameters:AddProposal\", \"policy_add_or_update_role:AddProposal\", \"add_member_to_role:*\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"megha19.near\", \"meghagoel.near\", \"petersalomonsen.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"604800000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Add allowed proposal kinds\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.4986232674020006e20}},{"id":"10400070662","receipt_id":"HcYWx1Kz8MMc8VVf8fgPjmGYRCwJdCw7cTG4MHvzA4AV","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"wa2XvwP4e3hqH1jfLPdvzbJn7Qzs9F5iisR9s8w2cPB","block_height":133425047,"block_timestamp":1732435549067875800},"receipt_outcome":{"gas_burnt":4893453894805.0,"tokens_burnt":4.893453894805e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"99eA5kj1RHHSxaNosSqHjAJuFr97CizJjrMXXb7Wp7o7","included_in_block_hash":"BgA2aEXibLfs1kB1WJ1Gd1AWcwpLVMoHwBPBKykpNv1w","block_timestamp":"1732435547931228591","block":{"block_height":133425046},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.893453894805e20,"args":"{\"id\": 117, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.42684172448e20}},{"id":"10400071248","receipt_id":"8mUN7oRgaDKr71iSpMJ2FvwQm2oHhiuxssNhKqr1WywZ","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"petersalomonsen.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2npYEUnRDSQFto9yuuXciVyMFWgSnkecXaC9bsFRrBEX","block_height":133425048,"block_timestamp":1732435550101958000},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"petersalomonsen.near","status":true},"transaction_hash":"99eA5kj1RHHSxaNosSqHjAJuFr97CizJjrMXXb7Wp7o7","included_in_block_hash":"BgA2aEXibLfs1kB1WJ1Gd1AWcwpLVMoHwBPBKykpNv1w","block_timestamp":"1732435547931228591","block":{"block_height":133425046},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.42684172448e20}},{"id":"10400105937","receipt_id":"67RddmTzTBWPaJiCwvLaxenXAHpEqTKXzYM8oSgifMHE","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8gFsDuT986KCQUEPonfBHGQNtNixtMQnKLa2rrjTFW2P","block_height":133425172,"block_timestamp":1732435688990069500},"receipt_outcome":{"gas_burnt":2912755722681.0,"tokens_burnt":2.912755722681e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FW7oKnkqcwKgMUXGWo1Q8fiBVuSehy6HsvD6hticcxZL","included_in_block_hash":"D5U5cDLqLvtRV3ftKu9RLWSkAgrxpA644cgYMeivGUJL","block_timestamp":"1732435687733591498","block":{"block_height":133425171},"receipt_conversion_tokens_burnt":"31559352697000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.912755722681e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicyUpdateParameters\": {\"parameters\": {\"proposal_period\": \"518400000000000\"}}}, \"description\": \"Change proposal period\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.228349249651e20}},{"id":"10400110165","receipt_id":"AMSFtFbfkJJYvuh71HGykhiMrrrsrUHX4dCbyh4yAcaD","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"H6VfySMm3HznCDcxDSwdHT6RuYNkhKv2JAwGLcDcv8tz","block_height":133425226,"block_timestamp":1732435751492974600},"receipt_outcome":{"gas_burnt":3886634921153.0,"tokens_burnt":3.886634921153e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"87JjNXxgMmrx44W8QD5U2Xq1LRYk5TmrJsWCY8j1C6oK","included_in_block_hash":"x8gXvr1YnwTUnk5WqPt636Zhv9JGNiv6ygBx1z1xKxa","block_timestamp":"1732435750381267779","block":{"block_height":133425225},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.886634921153e20,"args":"{\"id\": 118, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.420022750828e20}},{"id":"10400110219","receipt_id":"Hw8GTxDSsNuxnezDm4shF67mDTrdcdGYiXF9uoeoRmbG","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"petersalomonsen.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"44zjrHAgjQboh9vwEw7wkfdEARAQqbkKL5TrMnYDk9Wi","block_height":133425227,"block_timestamp":1732435752475275800},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"petersalomonsen.near","status":true},"transaction_hash":"87JjNXxgMmrx44W8QD5U2Xq1LRYk5TmrJsWCY8j1C6oK","included_in_block_hash":"x8gXvr1YnwTUnk5WqPt636Zhv9JGNiv6ygBx1z1xKxa","block_timestamp":"1732435750381267779","block":{"block_height":133425225},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.420022750828e20}},{"id":"10400202465","receipt_id":"AKZumKZhapwsrTkp49q4yG8QGeU4YNHiMhK5FW4Cv2Yj","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"G7d5eK5sWQbMcRBAgx6wAhR14TiTSbcpQ25iH8TmqK6P","block_height":133425466,"block_timestamp":1732436019310463200},"receipt_outcome":{"gas_burnt":2871289854903.0,"tokens_burnt":2.871289854903e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"7Y4aeKzxgoPgUsDKSC89VyVGzzap2vWBthQcZtBz8sgx","included_in_block_hash":"EJBu1XQKhcZHzkuYVyA8F8sXp4UmXJ95RHbzSY8qUbFB","block_timestamp":"1732436018195161109","block":{"block_height":133425465},"receipt_conversion_tokens_burnt":"31559352697000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.871289854903e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicyUpdateParameters\": {\"parameters\": {\"proposal_period\": \"864000000000000\"}}}, \"description\": \"Change proposal period\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.186883381873e20}},{"id":"10400226636","receipt_id":"BthqH69KiBprL6p9rhqFMrTHPrvnFVRzKd45gaeyb1gf","predecessor_account_id":"petersalomonsen.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"28P9hn5HovWQeeoYHxdBmdXPdzM7pxQ7WpgEDNbxupDZ","block_height":133425551,"block_timestamp":1732436111586207500},"receipt_outcome":{"gas_burnt":3886634921153.0,"tokens_burnt":3.886634921153e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"ASk12bypjh8c4cP17DyjoqAy7RLnEJ55XEmLDF91tVAB","included_in_block_hash":"3DC13HQASejwCLjPgzQ5oRtSu9Rvw72TB2Wfff8ZMJzq","block_timestamp":"1732436110418787854","block":{"block_height":133425550},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.886634921153e20,"args":"{\"id\": 119, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.420022750828e20}},{"id":"10400226934","receipt_id":"2XBgiApgBac5uxRW9MSBdXaBNxXyPUn8EFh4UQGgVW3k","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"petersalomonsen.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"2FmBRr3Hpy69bamEwrFVnk6Gub5neE9Vaj5jAy7foUAW","block_height":133425552,"block_timestamp":1732436112636790300},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"petersalomonsen.near","status":true},"transaction_hash":"ASk12bypjh8c4cP17DyjoqAy7RLnEJ55XEmLDF91tVAB","included_in_block_hash":"3DC13HQASejwCLjPgzQ5oRtSu9Rvw72TB2Wfff8ZMJzq","block_timestamp":"1732436110418787854","block":{"block_height":133425550},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.420022750828e20}},{"id":"10502128620","receipt_id":"AdxQe2hUW3XnEt7E4HSjrZtNC9DivmJNmTpLjGrYLTCd","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"J2hCaQDnbX8GeFQmttyxvKPpMPnAGg4qQkNRdCi2tz2Q","block_height":133691943,"block_timestamp":1732733071451980500},"receipt_outcome":{"gas_burnt":2896154997999.0,"tokens_burnt":2.896154997999e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"GNEUnNkpf9aTE3RRdgoen3zk3R9Hg1TRygR8Fk8XMurY","included_in_block_hash":"3D1S5qcv4tQfboZGQHagrYKiCeg4sUfddfaSXfbUfgou","block_timestamp":"1732733070349639574","block":{"block_height":133691942},"receipt_conversion_tokens_burnt":"31559352697000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.896154997999e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicyUpdateParameters\": {\"parameters\": {\"proposal_period\": \"950400000000000\"}}}, \"description\": \"Change proposal period\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.2117485249689996e20}},{"id":"10647922519","receipt_id":"8sb9ksPmcHSLH1AuV9DyQfanD1sHtYxpMxFvn6RcUaqm","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"5defsqWDGsDnkhuMsr1Ngp6XQTiB5Wc35waJBCHZjKKc","block_height":134052682,"block_timestamp":1733140040444847400},"receipt_outcome":{"gas_burnt":2935677627509.0,"tokens_burnt":2.935677627509e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"CHZPAstbJ2yhKeEzTnxwq3KTHkqwbdhpVTkLYVvmdLRE","included_in_block_hash":"7pb3j2iZ1Z14Br3vyV4e98evdVjwwK5s6RKZxG3CnkDe","block_timestamp":"1733140038071558701","block":{"block_height":134052681},"receipt_conversion_tokens_burnt":"32083873562000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.935677627509e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"\", \"deposit\": \"500000000000000000000000\", \"method_name\": \"deposit_and_stake\"}], \"receiver_id\": \"bisontrails.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.256516363129e20}},{"id":"10647931699","receipt_id":"4AJWHiKW3xdXmKQ6QrPQngxRASL2MjN5JjKhCGcCVeYJ","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"37fFFLcdwevxmQ66fWjp7qhfT9QUauPYG12VysJ7vSbo","block_height":134052703,"block_timestamp":1733140063423976200},"receipt_outcome":{"gas_burnt":3864884056881.0,"tokens_burnt":3.864884056881e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk","included_in_block_hash":"CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x","block_timestamp":"1733140062280899672","block":{"block_height":134052702},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.864884056881e20,"args":"{\"id\": 121, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2976023778136e21}},{"id":"10647932398","receipt_id":"F1spBNpqEVJQjwVHoYVcvV5XH9MnKWvsFG2RpCHSLDrX","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"bisontrails.poolv1.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ADskNobd8PfxZfQVSHytXLNcqy5Ge9wBWv2dWiBs7hKh","block_height":134052704,"block_timestamp":1733140064547454200},"receipt_outcome":{"gas_burnt":3653767743965.0,"tokens_burnt":3.6537677439650005e20,"executor_account_id":"bisontrails.poolv1.near","status":true},"transaction_hash":"BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk","included_in_block_hash":"CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x","block_timestamp":"1733140062280899672","block":{"block_height":134052702},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"deposit_and_stake","deposit":5e23,"fee":3.6537677439650005e20,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2976023778136e21}},{"id":"10647932407","receipt_id":"9C1dgZcP8aJS4xq1Et4e4zHxY5N9eEzZaUqCEmj9SXct","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"ADskNobd8PfxZfQVSHytXLNcqy5Ge9wBWv2dWiBs7hKh","block_height":134052704,"block_timestamp":1733140064547454200},"receipt_outcome":{"gas_burnt":3122365808778.0,"tokens_burnt":3.122365808778e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk","included_in_block_hash":"CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x","block_timestamp":"1733140062280899672","block":{"block_height":134052702},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.122365808778e20,"args":"{\"proposal_id\": 121}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2976023778136e21}},{"id":"10647933369","receipt_id":"ESo2FwdsVTLx7X6eFALMD8B6vQJtvEdkHYiEL7hXScjK","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HatkhgwuQ3d8GJ4EKhTRMEosv6npaLhXy6JBbtJeeCSr","block_height":134052706,"block_timestamp":1733140066661023200},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"BBQAmiSngBpyaGYoo8wsuo32aiJEzicQo76nmK8vVqzk","included_in_block_hash":"CfzpVWvZTiAMheYpxvebK41ncHc9Z4Gi7qGy1rSHQj7x","block_timestamp":"1733140062280899672","block":{"block_height":134052702},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2976023778136e21}},{"id":"10648069284","receipt_id":"BNXhwN4sa2jvtQfFtSbLN4tQmndeSrMFYR1tQokaPhsi","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"BQn8x3TVirjgrxSaY4gL3CorDK7BjMroD4c6ZiCZEW8S","block_height":134053002,"block_timestamp":1733140406100546800},"receipt_outcome":{"gas_burnt":2937463757289.0,"tokens_burnt":2.9374637572889998e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"DsK5ZjnGmXQ4qLu9eypZaQGquBRzZLuYRs3j63GmrrUf","included_in_block_hash":"EnoCmmFgYf6TASXN3fwcKy8Y1FAZbPtWBSnjyPZ1vLby","block_timestamp":"1733140404966551975","block":{"block_height":134053001},"receipt_conversion_tokens_burnt":"32174472620500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.9374637572889998e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"eyJhbW91bnQiOiIyNTAwMDAwMDAwMDAwMDAwMDAwMDAwMDAifQ==\", \"deposit\": \"0\", \"method_name\": \"unstake\"}], \"receiver_id\": \"bisontrails.poolv1.near\"}}, \"description\": \"{\\\\\\\\\\\\\\\"isStakeRequest\\\\\\\\\\\\\\\":true,\\\\\\\\\\\\\\\"notes\\\\\\\\\\\\\\\":null}\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.259208483494e20}},{"id":"10648073416","receipt_id":"8a4KWaJ9BhCncnxb6Ao7jiQQhbWFr47eofwyqCuk8DCh","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"DA8RYzaANrJnDs1gJiy8KFSJ42Qh4qNqVsn5p2GsERne","block_height":134053016,"block_timestamp":1733140421840036000},"receipt_outcome":{"gas_burnt":3872545268656.0,"tokens_burnt":3.872545268656e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X","included_in_block_hash":"Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n","block_timestamp":"1733140420619015943","block":{"block_height":134053015},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":3.872545268656e20,"args":"{\"id\": 122, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2361571289765e21}},{"id":"10648073795","receipt_id":"9geJZS8dJJeUipbq74f8UEGCWX3LByG1E6phnSzVscPB","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"bisontrails.poolv1.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4DR41Vw6Y1xhqZbVsgPqT8TwibwydMYHAiFhpaf1hEDH","block_height":134053017,"block_timestamp":1733140422933179600},"receipt_outcome":{"gas_burnt":3026095435036.0,"tokens_burnt":3.026095435036e20,"executor_account_id":"bisontrails.poolv1.near","status":true},"transaction_hash":"33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X","included_in_block_hash":"Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n","block_timestamp":"1733140420619015943","block":{"block_height":134053015},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"unstake","deposit":0.0,"fee":3.026095435036e20,"args":"{\"amount\": \"250000000000000000000000\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2361571289765e21}},{"id":"10648073797","receipt_id":"8NZx7B87hPwNA1LKLjPejXz5fB3k7rDbrhVQdgANcUTz","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4DR41Vw6Y1xhqZbVsgPqT8TwibwydMYHAiFhpaf1hEDH","block_height":134053017,"block_timestamp":1733140422933179600},"receipt_outcome":{"gas_burnt":3127924417561.0,"tokens_burnt":3.127924417561e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X","included_in_block_hash":"Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n","block_timestamp":"1733140420619015943","block":{"block_height":134053015},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"on_proposal_callback","deposit":0.0,"fee":3.127924417561e20,"args":"{\"proposal_id\": 122}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2361571289765e21}},{"id":"10648074527","receipt_id":"JAw6bLmMdJUgsx1hTWYfJKuHbKpveCRYuhwGww1rR4Wf","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"megha19.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"6mac8ZXePSf29HxWA3jkWV9kqyhwN1wDTRf6z8mG9UJF","block_height":134053019,"block_timestamp":1733140424910559700},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"megha19.near","status":true},"transaction_hash":"33CWu4Tavf1FZPFVKeGaVyGWSjiozQePXUtbwcb7VU2X","included_in_block_hash":"Eg1mJW2rqkWHQNMoc7eDNWSSsXK1XGvh8ABt75hiAM3n","block_timestamp":"1733140420619015943","block":{"block_height":134053015},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":1.2361571289765e21}},{"id":"10720513722","receipt_id":"AuEPYCJYroemnSNvw9wiJtoUteE6jG9MY7V4JCTdjTJb","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"GhemU4nwmykrCyi5ZzRX8rEujETt3CvTR8gN4z5mpDbd","block_height":134214092,"block_timestamp":1733323714238445300},"receipt_outcome":{"gas_burnt":2868958055157.0,"tokens_burnt":2.868958055157e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"FRgrLB1X5LXQRQUUbbU7gAeBUZMUzwqpepteXVGVGG1H","included_in_block_hash":"FTe4cwpXn7V96vPbZ1rYH4AtmEaCQpJgdBC1GvbsVh8L","block_timestamp":"1733323713336309823","block":{"block_height":134214091},"receipt_conversion_tokens_burnt":"33075694834000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.868958055157e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"1000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"* Title: DevRel & DevHub (01 - 30 November) Contributor Report\\\\\\\\n* Summary: Monthly paid developer relations contributor report. These activities aim to onboard more developers to the ecosystem, and assist existing developers with problems or enrich their experience. Activities for the last month can be seen below.\\\\\\\\n* ProposalId: 267\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.199715003497e20}},{"id":"10720529640","receipt_id":"EikJNrxWrTsFsj46rYVbR75JQEyyNoGV5LrkM5UgjMcM","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"A6YDZ2RttXmUx4enqAFX6jECLRzCUkygdEwRgmTmL8PR","block_height":134214132,"block_timestamp":1733323758364167400},"receipt_outcome":{"gas_burnt":2862659748957.0,"tokens_burnt":2.8626597489570002e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"APMLNvBbSKkcdrT2DCB1o4KKBZySrRe4K9z5DvwYG5Sn","included_in_block_hash":"D7t1wpJftHPvtVfc4R3SnUXK8N7atp19mtWSMw3sYcfs","block_timestamp":"1733323757308472623","block":{"block_height":134214131},"receipt_conversion_tokens_burnt":"32889728345500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8626597489570002e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000000000000000000000\", \"token_id\": \"\", \"receiver_id\": \"megha19.near\"}}, \"description\": \"* Title: DevHub Developer Contributor report by Megha for 11/04/2024 - 12/01/2024\\\\\\\\n* Summary: Worked on treasury dashboard, added support for lockup contract, added staking and unstaking, updated dashboard, infinex, helped Thomas with indexer testing.\\\\\\\\n* Notes: testing notes\\\\\\\\n* ProposalId: 266\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.1915570324120004e20}},{"id":"10720604169","receipt_id":"JDXLxzphA1eaZURQho6dhcHQ1DA6e4f2hUVjrN7XJPWK","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"EE2WTftHiqFS93B5RscG2Qeoo15uqAeUXMDLBsws6Uhs","block_height":134214314,"block_timestamp":1733323961563307800},"receipt_outcome":{"gas_burnt":2878391097269.0,"tokens_burnt":2.8783910972690003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"DEgKuPgFcaWNYCt8LKMfnCTea4FAtj8AcPxALKSRgEED","included_in_block_hash":"PGB3uBdPbR1SQRfaT9WZRDDuxLaMQuKnd1kmanTKJxh","block_timestamp":"1733323960346437884","block":{"block_height":134214313},"receipt_conversion_tokens_burnt":"33557300355500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8783910972690003e20,"args":"{\"proposal\": {\"kind\": {\"Transfer\": {\"amount\": \"10000\", \"token_id\": \"usdt.tether-token.near\", \"receiver_id\": \"thomasguntenaar.near\"}}, \"description\": \"* Title: DevHub Developer Contributor report by THOMAS for 11/11/2024 \\\\\\\\u{2013}\\\\\\\\u{a0}11/22/2024\\\\\\\\n* Summary: Replacing the indexer infrastructure which we use at devhub to efficiently query data about proposals and rfp\\\\\\\\\\\\'s so we can filter order search in the main dashboards of the events- & infrastructure-committee, the templar instance & devhub itself. Also supporting the treasury dashboards.\\\\\\\\n* Notes: testing\\\\\\\\n* Proposal Id: 260\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.213964100824e20}},{"id":"10720800369","receipt_id":"FTyYZVFAav1UEi9VbosYavpoYepyxCgDWp6M6D9Aw939","predecessor_account_id":"megha19.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"3Q6Jzu1GYYaX3BuKAkDw7jzCCuUN8fz4rCxcC7d9YAeM","block_height":134214828,"block_timestamp":1733324542867720200},"receipt_outcome":{"gas_burnt":2850625428917.0,"tokens_burnt":2.8506254289170003e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"HpbwTiTLtr9UgTEMxUFFZPKeL8P26fWEMSAk3nRhK45b","included_in_block_hash":"DP79S6V1pNAwoCCPNZzi4EbU9k4DRVkVxR1wr4FySef8","block_timestamp":"1733324541689127587","block":{"block_height":134214827},"receipt_conversion_tokens_burnt":"32126788905500000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":2.8506254289170003e20,"args":"{\"proposal\": {\"kind\": {\"FunctionCall\": {\"actions\": [{\"gas\": \"200000000000000\", \"args\": \"\", \"deposit\": \"10000000000000000000000\", \"method_name\": \"deposit_and_stake\"}], \"receiver_id\": \"astro-stakers.poolv1.near\"}}, \"description\": \"* Proposal Action: stake\\\\\\\\n* Notes: Testing notes\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":3.1718933179719995e20}},{"id":"11150200034","receipt_id":"8nNvDrhpPeEnpYJEqKs9SwwVFa4CnANn8JXXBoMEvFHA","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"8SDxQdgPy4BBMg3yidLJFyozBQG7jTEZTRnEMMFEhta8","block_height":134701557,"block_timestamp":1733879905560422700},"receipt_outcome":{"gas_burnt":4297511363923.0,"tokens_burnt":4.297511363923e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"9RdLF5mPt5gJKGUqJApa2n3pWy6VsFg44k4U91fqffTD","included_in_block_hash":"8wZhPtUE9YEbK21xZHJ1T6dQJcBnyEYRUvJgiVPmoePo","block_timestamp":"1733879904272674011","block":{"block_height":134701556},"receipt_conversion_tokens_burnt":"48630122667000000000","actions":[{"action":"FUNCTION_CALL","method":"add_proposal","deposit":0.0,"fee":4.297511363923e20,"args":"{\"proposal\": {\"kind\": {\"ChangePolicy\": {\"policy\": {\"roles\": [{\"kind\": {\"Group\": [\"theori.near\", \"freski.near\", \"megha19.near\", \"frol.near\", \"thomasguntenaar.near\", \"petersalomonsen.near\"]}, \"name\": \"Create Requests\", \"permissions\": [\"call:AddProposal\", \"*:VoteRemove\", \"transfer:AddProposal\", \"config:Finalize\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"petersalomonsen.near\", \"thomasguntenaar.near\", \"theori.near\", \"megha19.near\"]}, \"name\": \"Manage Members\", \"permissions\": [\"config:*\", \"policy:*\", \"add_member_to_role:*\", \"policy_update_parameters:AddProposal\", \"policy_add_or_update_role:AddProposal\", \"remove_member_from_role:*\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}}}, {\"kind\": {\"Group\": [\"freski.near\", \"megha19.near\", \"meghagoel.near\", \"petersalomonsen.near\", \"frol.near\"]}, \"name\": \"Vote\", \"permissions\": [\"*:VoteReject\", \"*:VoteApprove\", \"*:VoteRemove\"], \"vote_policy\": {\"call\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"vote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"config\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"policy\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"transfer\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_bounty\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"bounty_done\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_self\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"set_vote_token\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"upgrade_remote\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"add_member_to_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}, \"remove_member_from_role\": {\"quorum\": \"0\", \"threshold\": [10, 100], \"weight_kind\": \"RoleWeight\"}}}], \"bounty_bond\": \"100000000000000000000000\", \"proposal_bond\": \"0\", \"proposal_period\": \"864000000000000\", \"default_vote_policy\": {\"quorum\": \"1\", \"threshold\": \"1\", \"weight_kind\": \"RoleWeight\"}, \"bounty_forgiveness_period\": \"604800000000000\"}}}, \"description\": \"Change policy\"}}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":4.783812590593001e20}},{"id":"11150201675","receipt_id":"vdjFgzgBuTBVPRSq5KFgnnwd1iTQAEbFzybABnQnhbK","predecessor_account_id":"theori.near","receiver_account_id":"testing-astradao.sputnik-dao.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"HRYTMdkskTdn2wpaueUj3kJ3C3HnpDnpv4qLucebTvSo","block_height":134701562,"block_timestamp":1733879911228003600},"receipt_outcome":{"gas_burnt":4830985810346.0,"tokens_burnt":4.8309858103460004e20,"executor_account_id":"testing-astradao.sputnik-dao.near","status":true},"transaction_hash":"Ex6tKYc35k22oRXDG5yvPFvRXRd6dDj82oMhCU9UtTqR","included_in_block_hash":"FpkLSxP8BCBeHNRmhbZce8fzpP4GukMPxsVr925gRC5h","block_timestamp":"1733879910006974460","block":{"block_height":134701561},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"FUNCTION_CALL","method":"act_proposal","deposit":0.0,"fee":4.8309858103460004e20,"args":"{\"id\": 127, \"action\": \"VoteApprove\"}"}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.364373640021e20}},{"id":"11150202109","receipt_id":"58h5eQ8d1yJhnx3iqFbbh88Db9GRFpGXkeBMAg8aSnxK","predecessor_account_id":"testing-astradao.sputnik-dao.near","receiver_account_id":"theori.near","receipt_kind":"ACTION","receipt_block":{"block_hash":"4mkHyvFM7FHNhnsPS3oMF2RDFNFDnHnMgYKPTCU31psk","block_height":134701563,"block_timestamp":1733879912444341500},"receipt_outcome":{"gas_burnt":223182562500.0,"tokens_burnt":2.231825625e19,"executor_account_id":"theori.near","status":true},"transaction_hash":"Ex6tKYc35k22oRXDG5yvPFvRXRd6dDj82oMhCU9UtTqR","included_in_block_hash":"FpkLSxP8BCBeHNRmhbZce8fzpP4GukMPxsVr925gRC5h","block_timestamp":"1733879910006974460","block":{"block_height":134701561},"receipt_conversion_tokens_burnt":"31020526717500000000","actions":[{"action":"TRANSFER","method":null,"deposit":0.0,"fee":2.231825625e19,"args":null}],"actions_agg":{"deposit":0.0},"outcomes":{"status":true},"outcomes_agg":{"transaction_fee":5.364373640021e20}}] \ No newline at end of file From 9e5df666f30987d0893fa3c2f501f8e936cd3744 Mon Sep 17 00:00:00 2001 From: Thomas Date: Mon, 23 Dec 2024 17:05:58 +0100 Subject: [PATCH 3/5] remove txns --- migrations/20241217195849_sputnik.sql | 28 ------ src/db/mod.rs | 123 +------------------------- src/entrypoints/sputnik/mod.rs | 11 --- src/nearblocks_client/sputnik.rs | 22 ++--- src/rpc_service.rs | 6 +- 5 files changed, 18 insertions(+), 172 deletions(-) diff --git a/migrations/20241217195849_sputnik.sql b/migrations/20241217195849_sputnik.sql index 8a37346..cec9bf5 100644 --- a/migrations/20241217195849_sputnik.sql +++ b/migrations/20241217195849_sputnik.sql @@ -29,34 +29,6 @@ CREATE INDEX idx_dao_proposals_total_votes ON dao_proposals (total_votes); CREATE INDEX idx_dao_proposals_dao_instance ON dao_proposals (dao_instance); CREATE INDEX idx_dao_proposals_proposal_action ON dao_proposals (proposal_action); -CREATE TABLE IF NOT EXISTS - txns ( - id SERIAL PRIMARY KEY, - tx_id BIGINT NOT NULL, - hash VARCHAR NOT NULL, - author_id VARCHAR NOT NULL, - dao_instance VARCHAR NOT NULL, - proposer VARCHAR NOT NULL, - description VARCHAR NOT NULL, - kind VARCHAR NOT NULL, - status VARCHAR NOT NULL, - total_votes INT NOT NULL, - vote_counts JSONB NOT NULL, - votes JSONB NOT NULL, - submission_time BIGINT NOT NULL, - proposal_action VARCHAR NOT NULL - ); - -CREATE INDEX idx_txns_hash ON txns (hash); -CREATE INDEX idx_txns_author_id ON txns (author_id); -CREATE INDEX idx_txns_dao_instance ON txns (dao_instance); -CREATE INDEX idx_txns_proposer ON txns (proposer); -CREATE INDEX idx_txns_description ON txns (description); -CREATE INDEX idx_txns_kind ON txns (kind); -CREATE INDEX idx_txns_status ON txns (status); -CREATE INDEX idx_txns_submission_time ON txns (submission_time); -CREATE INDEX idx_txns_proposal_action ON txns (proposal_action); - CREATE TABLE IF NOT EXISTS dao_instances_last_updated_info ( instance VARCHAR NOT NULL PRIMARY KEY, diff --git a/src/db/mod.rs b/src/db/mod.rs index 3452631..9d17c6f 100644 --- a/src/db/mod.rs +++ b/src/db/mod.rs @@ -1,8 +1,7 @@ use crate::{ entrypoints::{ - proposal::proposal_types::GetProposalFilters, - rfp::rfp_types::GetRfpFilters, - sputnik::{GetDaoProposalsFilters, GetTxnsFilters}, + proposal::proposal_types::GetProposalFilters, rfp::rfp_types::GetRfpFilters, + sputnik::GetDaoProposalsFilters, }, timestamp_to_date_string, }; @@ -22,7 +21,7 @@ pub mod db_types; use db_types::{ BlockHeight, LastUpdatedInfo, ProposalSnapshotRecord, ProposalWithLatestSnapshotView, - RfpSnapshotRecord, RfpWithLatestSnapshotView, SputnikProposalSnapshotRecord, SputnikTxnsRecord, + RfpSnapshotRecord, RfpWithLatestSnapshotView, SputnikProposalSnapshotRecord, }; impl DB { @@ -948,62 +947,6 @@ impl DB { } } - pub async fn insert_txn( - tx: &mut Transaction<'static, Postgres>, - record: SputnikTxnsRecord, - ) -> anyhow::Result<()> { - let sql = r#" - INSERT INTO txns (id, hash, author_id, dao_instance, proposer, description, kind, status, total_votes, vote_counts, votes, submission_time, proposal_action) - VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) - "#; - let result = sqlx::query(sql) - .bind(record.id) - .bind(record.hash) - .bind(record.author_id) - .bind(&record.dao_instance) - .bind(record.proposer) - .bind(record.description) - .bind(record.kind) - .bind(record.status) - .bind(record.total_votes) - .bind(record.vote_counts) - .bind(record.votes) - .bind(record.submission_time) - .bind(record.proposal_action) - .execute(tx.as_mut()) - .await; - - match result { - Ok(_) => { - println!( - "Inserted transaction from account {} and id {:?}", - &record.dao_instance, record.id - ); - Ok(()) - } - Err(e) => { - eprintln!("Failed to insert txn: {:?}", e); - Err(anyhow::anyhow!("Failed to insert txn")) - } - } - } - - // pub async fn get_proposal_by_id( - // &self, - // proposal_id: i64, - // ) -> Result, sqlx::Error> { - // let sql = r#" - // SELECT * - // FROM proposals - // WHERE id = $1 - // "#; - // let proposal = sqlx::query_as::<_, ProposalRecord>(sql) - // .bind(proposal_id) - // .fetch_optional(&self.0) - // .await?; - // Ok(proposal) - // } - pub async fn get_dao_proposals( &self, dao_instance: &str, @@ -1067,66 +1010,6 @@ impl DB { Ok((proposals, total_count)) } - - pub async fn get_txns( - &self, - account_id: &str, - limit: i64, - order: &str, - offset: i64, - filters: Option, - ) -> anyhow::Result<(Vec, i64)> { - // Validate the order clause to prevent SQL injection - let order_clause = match order.to_lowercase().as_str() { - "ts_asc" => "submission_time ASC", - "ts_desc" => "submission_time DESC", - "id_asc" => "id ASC", - "id_desc" => "id DESC", - _ => "id DESC", // Default to DESC if the order is not recognized - }; - - let author_id = filters.as_ref().and_then(|f| f.author_id.as_ref()); - let kind = filters.as_ref().and_then(|f| f.kind.as_ref()); - // let total_votes = filters.as_ref().and_then(|f| f.total_votes.as_ref()); - let status = filters.as_ref().and_then(|f| f.status.as_ref()); - - let sql = format!( - r#" - SELECT * - FROM txns - WHERE dao_instance = $1 - AND ($2 IS NULL OR author_id = $2) - AND ($3 IS NULL OR kind = $3) - AND ($4 IS NULL OR status = $4) - ORDER BY {} - LIMIT $5 OFFSET $6 - "#, - order_clause, - ); - - let txns = sqlx::query_as::<_, SputnikTxnsRecord>(&sql) - .bind(account_id) - .bind(author_id) - .bind(kind) - .bind(status) - .bind(limit) - .bind(offset) - .fetch_all(&self.0) - .await?; - - let count_sql = r#" - SELECT COUNT(*) - FROM txns - WHERE dao_instance = $1 - "#; - - let total_count = sqlx::query_scalar::<_, i64>(count_sql) - .bind(account_id) - .fetch_one(&self.0) - .await?; - - Ok((txns, total_count)) - } } async fn run_migrations(rocket: Rocket) -> fairing::Result { diff --git a/src/entrypoints/sputnik/mod.rs b/src/entrypoints/sputnik/mod.rs index 8554604..03ded71 100644 --- a/src/entrypoints/sputnik/mod.rs +++ b/src/entrypoints/sputnik/mod.rs @@ -23,17 +23,6 @@ pub struct GetDaoProposalsFilters { pub proposal_action: Option, } -#[derive(Clone, Debug, FromForm, ToSchema)] -pub struct GetTxnsFilters { - pub author_id: Option, - pub instance: Option, - pub proposer: Option, - pub status: Option, - pub kind: Option, - pub description: Option, - pub proposal_action: Option, -} - async fn fetch_dao_proposals( db: &DB, account_id: &str, diff --git a/src/nearblocks_client/sputnik.rs b/src/nearblocks_client/sputnik.rs index fe8af37..9c67821 100644 --- a/src/nearblocks_client/sputnik.rs +++ b/src/nearblocks_client/sputnik.rs @@ -11,12 +11,12 @@ use serde_json::Value; use super::types::BLOCK_HEIGHT_OFFSET; -#[derive(Serialize, Deserialize, Clone)] +#[derive(Serialize, Deserialize, Clone, Debug)] pub struct AddProposalArgs { pub proposal: ProposalInput, } -#[derive(Serialize, Deserialize, Clone)] +#[derive(Serialize, Deserialize, Clone, Debug)] pub struct ProposalInput { pub description: String, pub kind: ProposalKind, @@ -81,13 +81,15 @@ pub async fn handle_add_proposal( db: &State, contract: &AccountId, ) -> Result<(), Status> { - // let action = transaction - // .actions - // .as_ref() - // .and_then(|actions| actions.first()) - // .ok_or(Status::InternalServerError)?; - // let json_args = action.args.clone(); - // let args: AddProposalArgs = serde_json::from_str(&json_args.unwrap_or_default()).unwrap(); + let action = transaction + .actions + .as_ref() + .and_then(|actions| actions.first()) + .ok_or(Status::InternalServerError)?; + let json_args = action.args.clone(); + let args: AddProposalArgs = serde_json::from_str(&json_args.unwrap_or_default()).unwrap(); + + println!("Args: {:?}", args); let rpc_service = RpcService::new(contract); @@ -98,7 +100,7 @@ pub async fn handle_add_proposal( ) .await { - Ok(last_proposal_id) => last_proposal_id.data, + Ok(last_proposal_id) => last_proposal_id.data - 1, // TODO TEST Err(e) => { eprintln!("Failed to get last dao proposal id on block: {:?}", e); return Err(Status::InternalServerError); diff --git a/src/rpc_service.rs b/src/rpc_service.rs index 5691409..bec2f63 100644 --- a/src/rpc_service.rs +++ b/src/rpc_service.rs @@ -212,13 +212,13 @@ impl RpcService { Err(on_block_error) => match self.get_dao_proposal(proposal_id).await { Ok(proposal) => Ok(proposal.data), Err(rpc_error) => { + eprintln!("Block error {:?}", on_block_error); eprintln!( "Failed get_dao_proposal_on_block from RPC on block height {} and id {}", block_id, proposal_id, ); - eprintln!("{:?}", on_block_error); - eprintln!("{:?}", rpc_error); - // Err(Status::InternalServerError) + eprintln!("RPC error {:?}", rpc_error); + // TODO issue 1018 Ok(ProposalOutput { id: proposal_id.try_into().unwrap(), From a22f730219549d4f6409abb3c94296d0919d4ac2 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sun, 5 Jan 2025 11:25:36 -0400 Subject: [PATCH 4/5] indexing first dao_proposals --- .vscode/settings.json | 3 + src/db/db_types.rs | 21 +-- src/db/mod.rs | 169 ++++++++++++++++++----- src/entrypoints/sputnik/mod.rs | 21 ++- src/entrypoints/sputnik/sputnik_types.rs | 21 +-- src/nearblocks_client/sputnik.rs | 20 ++- src/nearblocks_client/transactions.rs | 86 ++++++++++-- 7 files changed, 241 insertions(+), 100 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..92e3150 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "cSpell.words": ["astradao"] +} diff --git a/src/db/db_types.rs b/src/db/db_types.rs index 7c07c05..dbc8ed6 100644 --- a/src/db/db_types.rs +++ b/src/db/db_types.rs @@ -140,34 +140,17 @@ pub struct RfpDumpRecord { pub rfp_id: i32, } -#[derive(Debug, Clone, FromRow, Serialize, Deserialize, ToSchema)] -pub struct SputnikTxnsRecord { - pub id: i64, - pub hash: String, - pub author_id: String, - pub dao_instance: String, - pub proposer: String, - pub description: String, - pub kind: String, - pub status: String, - pub total_votes: i64, - pub vote_counts: serde_json::Value, - pub votes: serde_json::Value, - pub submission_time: i64, - pub proposal_action: String, -} - #[derive(Debug, Clone, FromRow, Serialize, Deserialize, ToSchema)] pub struct SputnikProposalSnapshotRecord { pub description: String, - pub id: i64, + pub id: i32, pub kind: serde_json::Value, pub proposer: String, pub status: String, pub submission_time: i64, pub vote_counts: serde_json::Value, pub votes: serde_json::Value, - pub total_votes: i64, + pub total_votes: i32, pub dao_instance: String, pub proposal_action: String, pub tx_timestamp: i64, diff --git a/src/db/mod.rs b/src/db/mod.rs index 9d17c6f..1a7c2db 100644 --- a/src/db/mod.rs +++ b/src/db/mod.rs @@ -902,48 +902,140 @@ impl DB { pub async fn upsert_dao_proposal_snapshot( tx: &mut Transaction<'static, Postgres>, - record: SputnikProposalSnapshotRecord, + sputnik_proposal: SputnikProposalSnapshotRecord, ) -> anyhow::Result<()> { - let sql = r#" - INSERT INTO dao_proposals (description, id, kind, proposer, status, submission_time, vote_counts, votes, total_votes, dao_instance, proposal_action, tx_timestamp, hash) - VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) - ON CONFLICT (id) DO UPDATE SET - description = $1, - kind = $3, - proposer = $4, - status = $5, - submission_time = $6, - vote_counts = $7, - votes = $8, - total_votes = $9, - dao_instance = $10, - proposal_action = $11, - tx_timestamp = $12, - hash = $13 - "#; - let result = sqlx::query(sql) - .bind(record.description) - .bind(record.id) - .bind(record.kind) - .bind(record.proposer) - .bind(record.status) - .bind(record.submission_time) - .bind(record.vote_counts) - .bind(record.votes) - .bind(record.total_votes) - .bind(record.dao_instance) - .bind(record.proposal_action) - .bind(record.tx_timestamp) - .bind(record.hash) - .execute(tx.as_mut()) - .await; + // JSONB fields + let kind = match serde_json::to_value(sputnik_proposal.kind) { + Ok(value) => value, + Err(e) => { + eprintln!("Error converting kind to JSON: {:?}", e); + return Err(e.into()); + } + }; - match result { - Ok(_) => Ok(()), + let vote_counts = match serde_json::to_value(sputnik_proposal.vote_counts) { + Ok(value) => value, Err(e) => { - eprintln!("Failed to insert dao proposal snapshot: {:?}", e); - Err(anyhow::anyhow!("Failed to insert dao proposal snapshot")) + eprintln!("Error converting vote_counts to JSON: {:?}", e); + return Err(e.into()); + } + }; + + let votes = match serde_json::to_value(&sputnik_proposal.votes) { + Ok(value) => value, + Err(e) => { + eprintln!("Error converting votes to JSON: {:?}", e); + return Err(e.into()); + } + }; + + // Attempt to update the existing record + let update_result = sqlx::query!( + r#" + UPDATE dao_proposals SET + description = $1, + kind = $2, + proposer = $3, + status = $4, + submission_time = $5, + vote_counts = $6, + votes = $7, + total_votes = $8, + dao_instance = $9, + proposal_action = $10, + tx_timestamp = $11, + hash = $12 + WHERE id = $13 + RETURNING id + "#, + sputnik_proposal.description, + kind, + sputnik_proposal.proposer, + sputnik_proposal.status, + sputnik_proposal.submission_time, + vote_counts, + votes, + sputnik_proposal.total_votes as i32, + sputnik_proposal.dao_instance, + sputnik_proposal.proposal_action, + sputnik_proposal.tx_timestamp, + sputnik_proposal.hash, + sputnik_proposal.id as i32 + ) + .fetch_optional(tx.as_mut()) + .await?; + + if let Some(record) = update_result { + println!("Updated dao proposal snapshot: {:?}", record.id); + Ok(()) + } else { + println!("Inserting description: {:?}", sputnik_proposal.description); + println!("Inserting id: {:?}", sputnik_proposal.id); + println!("Inserting kind: {:?}", kind); + println!("Inserting proposer: {:?}", sputnik_proposal.proposer); + println!("Inserting status: {:?}", sputnik_proposal.status); + println!( + "Inserting submission_time: {:?}", + sputnik_proposal.submission_time + ); + println!("Inserting vote_counts: {:?}", vote_counts); + println!("Inserting votes: {:?}", sputnik_proposal.votes); + println!("Inserting total_votes: {:?}", sputnik_proposal.total_votes); + println!( + "Inserting dao_instance: {:?}", + sputnik_proposal.dao_instance + ); + println!( + "Inserting proposal_action: {:?}", + sputnik_proposal.proposal_action + ); + println!( + "Inserting tx_timestamp: {:?}", + sputnik_proposal.tx_timestamp + ); + println!("Inserting hash: {:?}", sputnik_proposal.hash); + // If no rows were updated, insert a new record + let rec = sqlx::query!( + r#" + INSERT INTO dao_proposals ( + description, id, kind, proposer, status, submission_time, vote_counts, votes, total_votes, dao_instance, proposal_action, tx_timestamp, hash + ) VALUES ( + $1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13 + ) + ON CONFLICT (id) DO NOTHING + RETURNING id + "#, + sputnik_proposal.description, + sputnik_proposal.id as i32, + serde_json::Value::String("".to_string()), // kind: + sputnik_proposal.proposer, + sputnik_proposal.status, + sputnik_proposal.submission_time, + serde_json::Value::String("".to_string()), // vote_counts: + serde_json::Value::String("".to_string()), // votes: + sputnik_proposal.total_votes as i32, + sputnik_proposal.dao_instance, + sputnik_proposal.proposal_action, + sputnik_proposal.tx_timestamp, + sputnik_proposal.hash + ) + .fetch_optional(tx.as_mut()) + .await; + + match rec { + Ok(Some(record)) => { + println!("Inserted dao proposal snapshot: {:?}", record.id); + } + Ok(None) => { + println!("No record inserted due to conflict or other issue."); + eprintln!("No record inserted due to conflict or other issue."); + } + Err(e) => { + eprintln!("Error inserting dao proposal snapshot: {:?}", e); + return Err(anyhow::anyhow!("Failed to insert dao proposal snapshot")); + } } + Ok(()) } } @@ -972,6 +1064,7 @@ impl DB { * AND ($2 IS NULL OR kind->>'key' ILIKE '%' || $2 || '%') AND ($3 IS NULL OR status->>'key' ILIKE '%' || $3 || '%') */ + println!("where dao_instance: {:?}", dao_instance); let sql = format!( r#" SELECT * diff --git a/src/entrypoints/sputnik/mod.rs b/src/entrypoints/sputnik/mod.rs index 03ded71..192f338 100644 --- a/src/entrypoints/sputnik/mod.rs +++ b/src/entrypoints/sputnik/mod.rs @@ -1,6 +1,6 @@ use crate::db::db_types::SputnikProposalSnapshotRecord; use crate::db::DB; -use crate::nearblocks_client::transactions::update_nearblocks_data; +use crate::nearblocks_client::transactions::update_dao_via_nearblocks; use crate::types::PaginatedResponse; use near_account_id::AccountId; use rocket::http::Status; @@ -72,23 +72,18 @@ async fn get_dao_proposals( } }; - let current_timestamp_nano = chrono::Utc::now().timestamp_nanos_opt().unwrap(); let last_updated_info = db .get_last_updated_info_for_contract(&contract) .await .unwrap(); - if current_timestamp_nano - last_updated_info.after_date - >= chrono::Duration::seconds(2).num_nanoseconds().unwrap() - { - update_nearblocks_data( - db.inner(), - &contract, - nearblocks_api_key.inner(), - Some(last_updated_info.after_block), - ) - .await; - } + update_dao_via_nearblocks( + db.inner(), + &contract, + nearblocks_api_key.inner(), + Some(last_updated_info.after_block), + ) + .await; let (proposals, total) = fetch_dao_proposals(db, account_id, limit, order, offset, filters).await; diff --git a/src/entrypoints/sputnik/sputnik_types.rs b/src/entrypoints/sputnik/sputnik_types.rs index 524c64e..75f68b9 100644 --- a/src/entrypoints/sputnik/sputnik_types.rs +++ b/src/entrypoints/sputnik/sputnik_types.rs @@ -7,6 +7,7 @@ use std::collections::{HashMap, HashSet}; pub type OldAccountId = String; use near_sdk::json_types::Base64VecU8; use std::cmp::min; +use std::fmt; use super::policy::VersionedPolicy; @@ -220,7 +221,7 @@ impl WeightOrRatio { } } -/// How the voting policy votes get weigthed. +/// How the voting policy votes get weighted. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone, PartialEq)] #[cfg_attr(not(target_arch = "wasm32"), derive(Debug))] #[serde(crate = "near_sdk::serde")] @@ -296,16 +297,16 @@ pub enum ProposalStatus { Failed, } -impl ToString for ProposalStatus { - fn to_string(&self) -> String { +impl fmt::Display for ProposalStatus { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { - ProposalStatus::InProgress => "InProgress".to_string(), - ProposalStatus::Approved => "Approved".to_string(), - ProposalStatus::Rejected => "Rejected".to_string(), - ProposalStatus::Removed => "Removed".to_string(), - ProposalStatus::Expired => "Expired".to_string(), - ProposalStatus::Moved => "Moved".to_string(), - ProposalStatus::Failed => "Failed".to_string(), + ProposalStatus::InProgress => write!(f, "InProgress"), + ProposalStatus::Approved => write!(f, "Approved"), + ProposalStatus::Rejected => write!(f, "Rejected"), + ProposalStatus::Removed => write!(f, "Removed"), + ProposalStatus::Expired => write!(f, "Expired"), + ProposalStatus::Moved => write!(f, "Moved"), + ProposalStatus::Failed => write!(f, "Failed"), } } } diff --git a/src/nearblocks_client/sputnik.rs b/src/nearblocks_client/sputnik.rs index 9c67821..6bd58ce 100644 --- a/src/nearblocks_client/sputnik.rs +++ b/src/nearblocks_client/sputnik.rs @@ -81,16 +81,6 @@ pub async fn handle_add_proposal( db: &State, contract: &AccountId, ) -> Result<(), Status> { - let action = transaction - .actions - .as_ref() - .and_then(|actions| actions.first()) - .ok_or(Status::InternalServerError)?; - let json_args = action.args.clone(); - let args: AddProposalArgs = serde_json::from_str(&json_args.unwrap_or_default()).unwrap(); - - println!("Args: {:?}", args); - let rpc_service = RpcService::new(contract); // get last proposal id @@ -135,6 +125,7 @@ pub async fn handle_add_proposal( }; println!("Proposal: {:?}", daop.id); + println!("Proposal description: {:?}", daop.proposal.description); let proposal_action = decode_proposal_description("isStakeRequest", &daop.proposal.description); // TODO check v1 isStakeRequest as well @@ -153,7 +144,7 @@ pub async fn handle_add_proposal( submission_time: daop.proposal.submission_time.0 as i64, vote_counts: serde_json::to_value(daop.proposal.vote_counts).unwrap(), votes: serde_json::to_value(&daop.proposal.votes).unwrap(), - total_votes: daop.proposal.votes.len() as i64, + total_votes: daop.proposal.votes.len() as i32, dao_instance: contract.to_string(), proposal_action, tx_timestamp: transaction.block_timestamp.parse::().unwrap(), @@ -168,6 +159,11 @@ pub async fn handle_add_proposal( Status::InternalServerError })?; + tx.commit().await.map_err(|e| { + eprintln!("Failed to commit transaction: {:?}", e); + Status::InternalServerError + })?; + println!("Inserted proposal snapshot {}", daop.id); Ok(()) @@ -229,7 +225,7 @@ pub async fn handle_act_proposal( submission_time: dao_proposal.proposal.submission_time.0 as i64, vote_counts: serde_json::to_value(dao_proposal.proposal.vote_counts).unwrap(), votes: serde_json::to_value(&dao_proposal.proposal.votes).unwrap(), - total_votes: dao_proposal.proposal.votes.len() as i64, + total_votes: dao_proposal.proposal.votes.len() as i32, dao_instance: contract.to_string(), proposal_action, tx_timestamp: transaction.block_timestamp.parse::().unwrap(), diff --git a/src/nearblocks_client/transactions.rs b/src/nearblocks_client/transactions.rs index 3240613..53e65c0 100644 --- a/src/nearblocks_client/transactions.rs +++ b/src/nearblocks_client/transactions.rs @@ -98,6 +98,84 @@ pub async fn update_nearblocks_data( } } +pub async fn update_dao_via_nearblocks( + db: &DB, + contract: &AccountId, + nearblocks_api_key: &str, + after_block: Option, +) { + let nearblocks_client = nearblocks_client::ApiClient::new(nearblocks_api_key.to_string()); + + let (all_transactions, _) = + fetch_all_new_transactions(&nearblocks_client, contract, after_block).await; + + println!("Total transactions fetched: {}", all_transactions.len()); + + let _ = nearblocks_client::transactions::process_dao_transactions( + &all_transactions, + db.into(), + contract, + ) + .await; + + if let Some(transaction) = all_transactions.last() { + let timestamp_nano = transaction.block_timestamp.parse::().unwrap(); + let _ = db + .set_last_updated_info_for_contract( + contract, + timestamp_nano, + transaction.block.block_height, + ) + .await; + } +} + +pub async fn process_dao_transactions( + transactions: &[Transaction], + db: &State, + contract: &AccountId, +) -> Result<(), Status> { + for transaction in transactions.iter() { + if let Some(action) = transaction + .actions + .as_ref() + .and_then(|actions| actions.first()) + { + if !transaction.receipt_outcome.status { + eprintln!( + "Proposal receipt outcome status is {:?}", + transaction.receipt_outcome.status + ); + // eprintln!("On transaction: {:?}", transaction); + continue; + } + let result = match action.method.as_deref().unwrap_or("") { + // TODO can't reuse this because the other contract has a function with the same name + "add_proposal" => { + println!("add_proposal"); + handle_add_proposal(transaction.to_owned(), db, contract).await + } + // TODO: Uncomment this + // "act_proposal" => { + // println!("act_proposal"); + // handle_act_proposal(transaction.to_owned(), db, contract).await + // } + _ => { + if action.action == "FUNCTION_CALL" { + println!("Unhandled method: {:?}", action.method.as_ref().unwrap()); + } else { + println!("Unhandled action: {:?}", action.action); + } + continue; + } + }; + result?; + } + } + + Ok(()) +} + pub async fn process( transactions: &[Transaction], db: &State, @@ -154,14 +232,6 @@ pub async fn process( println!("set_rfp_block_height_callback"); handle_set_rfp_block_height_callback(transaction.to_owned(), db, contract).await } - "add_proposal" => { - println!("add_proposal"); - handle_add_proposal(transaction.to_owned(), db, contract).await - } - // "act_proposal" => { - // println!("act_proposal"); - // handle_act_proposal(transaction.to_owned(), db, contract).await - // } _ => { if action.action == "FUNCTION_CALL" { // println!("Unhandled method: {:?}", action.method.as_ref().unwrap()); From dee708efc1b92057e95c8bed695501f10b2dd513 Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 14 Jan 2025 23:01:25 -0600 Subject: [PATCH 5/5] wip test_get_dao_proposals_filters --- ...83653bbc3736be9b3b149a456ba684cbac38f.json | 34 +++ ...53d447b08553afe8b7cba5655aeb2fd30fa87.json | 12 - ...4c40b4ed379a4c476f3596919bed3b4b7aa44.json | 16 ++ ...f98fb04146a161375a4c2df7ac0ea87316461.json | 28 ++ ...b4b2c006db4a3635bb4184c55d446ebfa147d.json | 34 +++ ...56630734e43a0ed6776e52cbb5dc7c5116fbd.json | 14 + src/db/mod.rs | 44 +++- src/entrypoints/sputnik/mod.rs | 45 +++- src/entrypoints/sputnik/policy.rs | 189 +------------- src/entrypoints/sputnik/sputnik_types.rs | 190 +++----------- src/main.rs | 2 + src/nearblocks_client/sputnik.rs | 223 ++++++++++++---- src/nearblocks_client/transactions.rs | 30 +-- src/rpc_service.rs | 88 ++++--- src/sputnik_tests.rs | 245 ++++++++++++++++++ src/tests.rs | 13 - 16 files changed, 704 insertions(+), 503 deletions(-) create mode 100644 .sqlx/query-266232df023d2ef012e4b2330f383653bbc3736be9b3b149a456ba684cbac38f.json delete mode 100644 .sqlx/query-425225f12b56dc21b010bcbd01153d447b08553afe8b7cba5655aeb2fd30fa87.json create mode 100644 .sqlx/query-69ad49925692dbc2437440194a44c40b4ed379a4c476f3596919bed3b4b7aa44.json create mode 100644 .sqlx/query-7780c1a219540cd9f9b374de998f98fb04146a161375a4c2df7ac0ea87316461.json create mode 100644 .sqlx/query-a39531d33d6937d9c7f861ac691b4b2c006db4a3635bb4184c55d446ebfa147d.json create mode 100644 .sqlx/query-b363d1e6cddc4cbe608f90e9dcc56630734e43a0ed6776e52cbb5dc7c5116fbd.json create mode 100644 src/sputnik_tests.rs diff --git a/.sqlx/query-266232df023d2ef012e4b2330f383653bbc3736be9b3b149a456ba684cbac38f.json b/.sqlx/query-266232df023d2ef012e4b2330f383653bbc3736be9b3b149a456ba684cbac38f.json new file mode 100644 index 0000000..0d14e29 --- /dev/null +++ b/.sqlx/query-266232df023d2ef012e4b2330f383653bbc3736be9b3b149a456ba684cbac38f.json @@ -0,0 +1,34 @@ +{ + "db_name": "PostgreSQL", + "query": "\n INSERT INTO dao_proposals (\n description, id, kind, proposer, status, submission_time, vote_counts, votes, total_votes, dao_instance, proposal_action, tx_timestamp, hash\n ) VALUES (\n $1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13\n )\n ON CONFLICT (id) DO NOTHING\n RETURNING id\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "id", + "type_info": "Int4" + } + ], + "parameters": { + "Left": [ + "Varchar", + "Int4", + "Jsonb", + "Varchar", + "Varchar", + "Int8", + "Jsonb", + "Jsonb", + "Int4", + "Varchar", + "Varchar", + "Int8", + "Varchar" + ] + }, + "nullable": [ + false + ] + }, + "hash": "266232df023d2ef012e4b2330f383653bbc3736be9b3b149a456ba684cbac38f" +} diff --git a/.sqlx/query-425225f12b56dc21b010bcbd01153d447b08553afe8b7cba5655aeb2fd30fa87.json b/.sqlx/query-425225f12b56dc21b010bcbd01153d447b08553afe8b7cba5655aeb2fd30fa87.json deleted file mode 100644 index a109183..0000000 --- a/.sqlx/query-425225f12b56dc21b010bcbd01153d447b08553afe8b7cba5655aeb2fd30fa87.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "db_name": "PostgreSQL", - "query": "DELETE FROM txns", - "describe": { - "columns": [], - "parameters": { - "Left": [] - }, - "nullable": [] - }, - "hash": "425225f12b56dc21b010bcbd01153d447b08553afe8b7cba5655aeb2fd30fa87" -} diff --git a/.sqlx/query-69ad49925692dbc2437440194a44c40b4ed379a4c476f3596919bed3b4b7aa44.json b/.sqlx/query-69ad49925692dbc2437440194a44c40b4ed379a4c476f3596919bed3b4b7aa44.json new file mode 100644 index 0000000..45986cd --- /dev/null +++ b/.sqlx/query-69ad49925692dbc2437440194a44c40b4ed379a4c476f3596919bed3b4b7aa44.json @@ -0,0 +1,16 @@ +{ + "db_name": "PostgreSQL", + "query": "\n INSERT INTO dao_instances_last_updated_info (instance, after_date, after_block)\n VALUES ($1, $2, $3)\n ON CONFLICT (instance) DO UPDATE SET\n after_date = $2,\n after_block = $3\n ", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Varchar", + "Int8", + "Int8" + ] + }, + "nullable": [] + }, + "hash": "69ad49925692dbc2437440194a44c40b4ed379a4c476f3596919bed3b4b7aa44" +} diff --git a/.sqlx/query-7780c1a219540cd9f9b374de998f98fb04146a161375a4c2df7ac0ea87316461.json b/.sqlx/query-7780c1a219540cd9f9b374de998f98fb04146a161375a4c2df7ac0ea87316461.json new file mode 100644 index 0000000..9370d03 --- /dev/null +++ b/.sqlx/query-7780c1a219540cd9f9b374de998f98fb04146a161375a4c2df7ac0ea87316461.json @@ -0,0 +1,28 @@ +{ + "db_name": "PostgreSQL", + "query": "\n SELECT after_date, after_block FROM dao_instances_last_updated_info\n WHERE instance = $1\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "after_date", + "type_info": "Int8" + }, + { + "ordinal": 1, + "name": "after_block", + "type_info": "Int8" + } + ], + "parameters": { + "Left": [ + "Text" + ] + }, + "nullable": [ + false, + false + ] + }, + "hash": "7780c1a219540cd9f9b374de998f98fb04146a161375a4c2df7ac0ea87316461" +} diff --git a/.sqlx/query-a39531d33d6937d9c7f861ac691b4b2c006db4a3635bb4184c55d446ebfa147d.json b/.sqlx/query-a39531d33d6937d9c7f861ac691b4b2c006db4a3635bb4184c55d446ebfa147d.json new file mode 100644 index 0000000..36cf46e --- /dev/null +++ b/.sqlx/query-a39531d33d6937d9c7f861ac691b4b2c006db4a3635bb4184c55d446ebfa147d.json @@ -0,0 +1,34 @@ +{ + "db_name": "PostgreSQL", + "query": "\n UPDATE dao_proposals SET\n description = $1,\n kind = $2,\n proposer = $3,\n status = $4,\n submission_time = $5,\n vote_counts = $6,\n votes = $7,\n total_votes = $8,\n dao_instance = $9,\n proposal_action = $10,\n tx_timestamp = $11,\n hash = $12\n WHERE id = $13\n RETURNING id\n ", + "describe": { + "columns": [ + { + "ordinal": 0, + "name": "id", + "type_info": "Int4" + } + ], + "parameters": { + "Left": [ + "Varchar", + "Jsonb", + "Varchar", + "Varchar", + "Int8", + "Jsonb", + "Jsonb", + "Int4", + "Varchar", + "Varchar", + "Int8", + "Varchar", + "Int4" + ] + }, + "nullable": [ + false + ] + }, + "hash": "a39531d33d6937d9c7f861ac691b4b2c006db4a3635bb4184c55d446ebfa147d" +} diff --git a/.sqlx/query-b363d1e6cddc4cbe608f90e9dcc56630734e43a0ed6776e52cbb5dc7c5116fbd.json b/.sqlx/query-b363d1e6cddc4cbe608f90e9dcc56630734e43a0ed6776e52cbb5dc7c5116fbd.json new file mode 100644 index 0000000..66ca6fe --- /dev/null +++ b/.sqlx/query-b363d1e6cddc4cbe608f90e9dcc56630734e43a0ed6776e52cbb5dc7c5116fbd.json @@ -0,0 +1,14 @@ +{ + "db_name": "PostgreSQL", + "query": "DELETE FROM dao_proposals WHERE dao_instance = $1", + "describe": { + "columns": [], + "parameters": { + "Left": [ + "Text" + ] + }, + "nullable": [] + }, + "hash": "b363d1e6cddc4cbe608f90e9dcc56630734e43a0ed6776e52cbb5dc7c5116fbd" +} diff --git a/src/db/mod.rs b/src/db/mod.rs index 1a7c2db..ab741ed 100644 --- a/src/db/mod.rs +++ b/src/db/mod.rs @@ -929,6 +929,18 @@ impl DB { } }; + // Determine the kind_key based on the type of kind + let kind = match kind { + serde_json::Value::Object(obj) => { + serde_json::Value::String(obj.keys().next().unwrap().to_string()) + } + serde_json::Value::String(s) => serde_json::Value::String(s.clone()), + _ => { + eprintln!("Unexpected kind type: {:?}", kind); + serde_json::Value::String("Error".to_string()) + } + }; + // Attempt to update the existing record let update_result = sqlx::query!( r#" @@ -1007,12 +1019,12 @@ impl DB { "#, sputnik_proposal.description, sputnik_proposal.id as i32, - serde_json::Value::String("".to_string()), // kind: + kind, sputnik_proposal.proposer, sputnik_proposal.status, sputnik_proposal.submission_time, - serde_json::Value::String("".to_string()), // vote_counts: - serde_json::Value::String("".to_string()), // votes: + vote_counts, + votes, sputnik_proposal.total_votes as i32, sputnik_proposal.dao_instance, sputnik_proposal.proposal_action, @@ -1056,22 +1068,21 @@ impl DB { }; let kind = filters.as_ref().and_then(|f| f.kind.as_ref()); - // let total_votes = filters.as_ref().and_then(|f| f.total_votes.as_ref()); + let total_votes = filters.as_ref().and_then(|f| f.total_votes.as_ref()); let status = filters.as_ref().and_then(|f| f.status.as_ref()); + let proposer = filters.as_ref().and_then(|f| f.proposer.as_ref()); - /* - * TODO add filters - * AND ($2 IS NULL OR kind->>'key' ILIKE '%' || $2 || '%') - AND ($3 IS NULL OR status->>'key' ILIKE '%' || $3 || '%') - */ - println!("where dao_instance: {:?}", dao_instance); let sql = format!( r#" SELECT * FROM dao_proposals WHERE dao_instance = $1 + AND ($2 IS NULL OR kind::text ILIKE '%' || $2 || '%') + AND ($3 IS NULL OR status::text ILIKE '%' || $3 || '%') + AND ($4 IS NULL OR total_votes = $4) + AND ($5 IS NULL OR proposer::text ILIKE '%' || $5 || '%') ORDER BY {} - LIMIT $4 OFFSET $5 + LIMIT $6 OFFSET $7 "#, order_clause, ); @@ -1080,24 +1091,29 @@ impl DB { .bind(dao_instance) .bind(kind) .bind(status) + .bind(total_votes) + .bind(proposer) .bind(limit) .bind(offset) .fetch_all(&self.0) .await?; - /* - AND ($2 IS NULL OR kind->>'key' ILIKE '%' || $2 || '%') - AND ($3 IS NULL OR status->>'key' ILIKE '%' || $3 || '%') */ let count_sql = r#" SELECT COUNT(*) FROM dao_proposals WHERE dao_instance = $1 + AND ($2 IS NULL OR kind::text ILIKE '%' || $2 || '%') + AND ($3 IS NULL OR status::text ILIKE '%' || $3 || '%') + AND ($4 IS NULL OR total_votes = $4) + AND ($5 IS NULL OR proposer::text ILIKE '%' || $5 || '%') "#; let total_count = sqlx::query_scalar::<_, i64>(count_sql) .bind(dao_instance) .bind(kind) .bind(status) + .bind(total_votes) + .bind(proposer) .fetch_one(&self.0) .await?; diff --git a/src/entrypoints/sputnik/mod.rs b/src/entrypoints/sputnik/mod.rs index 192f338..1ecd884 100644 --- a/src/entrypoints/sputnik/mod.rs +++ b/src/entrypoints/sputnik/mod.rs @@ -15,12 +15,14 @@ pub mod sputnik_types; #[derive(Clone, Debug, FromForm, ToSchema)] pub struct GetDaoProposalsFilters { - pub instance: Option, pub proposer: Option, - pub status: Option, pub kind: Option, - pub description: Option, - pub proposal_action: Option, + pub total_votes: Option, + pub status: Option, + // TODO 157 proposal_action? + // pub proposal_action: Option, + //TODO 157 description is for search + // pub description: Option, } async fn fetch_dao_proposals( @@ -116,13 +118,46 @@ async fn reset_dao_proposals(account_id: &str, db: &State) -> Result<(), Sta Ok(()) } +#[get("/proposals//resetandtest")] +async fn reset_and_test( + account_id: &str, + db: &State, + nearblocks_api_key: &State, +) -> Json> { + let contract = match AccountId::from_str(account_id) { + Ok(contract) => contract, + Err(_) => { + eprintln!("Invalid account id: {}", account_id); + AccountId::from_str("testing-astradao.sputnik-dao.near").unwrap() + } + }; + + db.remove_all_dao_proposals(account_id).await.unwrap(); + + update_dao_via_nearblocks(db.inner(), &contract, nearblocks_api_key.inner(), Some(0)).await; + + let (proposals, total) = fetch_dao_proposals(db, account_id, 10, "id_desc", 0, None).await; + + Json(PaginatedResponse::new( + proposals.into_iter().map(Into::into).collect(), + 1, + 10, + total.try_into().unwrap(), + )) +} + pub fn stage() -> rocket::fairing::AdHoc { rocket::fairing::AdHoc::on_ignite("Rfp Stage", |rocket| async { println!("Rfp stage on ignite!"); rocket.mount( "/dao/", - rocket::routes![set_block, get_dao_proposals, reset_dao_proposals], + rocket::routes![ + set_block, + get_dao_proposals, + reset_dao_proposals, + reset_and_test + ], ) }) } diff --git a/src/entrypoints/sputnik/policy.rs b/src/entrypoints/sputnik/policy.rs index fb29001..5dc184a 100644 --- a/src/entrypoints/sputnik/policy.rs +++ b/src/entrypoints/sputnik/policy.rs @@ -1,216 +1,29 @@ -use std::cmp::min; -use std::collections::{HashMap, HashSet}; - +use super::sputnik_types::{Balance, RolePermission, VotePolicy}; use near_sdk::borsh::{self, BorshDeserialize, BorshSerialize}; use near_sdk::json_types::{U128, U64}; use near_sdk::serde::{Deserialize, Serialize}; use near_sdk::AccountId; -use super::sputnik_types::Balance; - -#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] -#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] -#[serde(crate = "near_sdk::serde")] -pub enum RoleKind { - /// Matches everyone, who is not matched by other roles. - Everyone, - /// Member greater or equal than given balance. Can use `1` as non-zero balance. - Member(U128), - /// Set of accounts. - Group(HashSet), -} - -impl RoleKind { - /// Checks if user matches given role. - pub fn match_user(&self, user: &UserInfo) -> bool { - match self { - RoleKind::Everyone => true, - RoleKind::Member(amount) => user.amount >= amount.0, - RoleKind::Group(accounts) => accounts.contains(&user.account_id), - } - } - - /// Returns the number of people in the this role or None if not supported role kind. - pub fn get_role_size(&self) -> Option { - match self { - RoleKind::Group(accounts) => Some(accounts.len()), - _ => None, - } - } -} - -#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] -#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] -#[serde(crate = "near_sdk::serde")] -pub struct RolePermission { - /// Name of the role to display to the user. - pub name: String, - /// Kind of the role: defines which users this permissions apply. - pub kind: RoleKind, - /// Set of actions on which proposals that this role is allowed to execute. - /// : - pub permissions: HashSet, - /// For each proposal kind, defines voting policy. - pub vote_policy: HashMap, -} - pub struct UserInfo { pub account_id: AccountId, pub amount: Balance, } - -/// Direct weight or ratio to total weight, used for the voting policy. -#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] -#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] -#[serde(crate = "near_sdk::serde")] -#[serde(untagged)] -pub enum WeightOrRatio { - Weight(U128), - Ratio(u64, u64), -} - -impl WeightOrRatio { - /// Convert weight or ratio to specific weight given total weight. - pub fn to_weight(&self, total_weight: Balance) -> Balance { - match self { - WeightOrRatio::Weight(weight) => min(weight.0, total_weight), - WeightOrRatio::Ratio(num, denom) => min( - (*num as u128 * total_weight) / *denom as u128 + 1, - total_weight, - ), - } - } -} - -/// How the voting policy votes get weigthed. -#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone, PartialEq)] -#[cfg_attr(not(target_arch = "wasm32"), derive(Debug))] -#[serde(crate = "near_sdk::serde")] -pub enum WeightKind { - /// Using token amounts and total delegated at the moment. - TokenWeight, - /// Weight of the group role. Roles that don't have scoped group are not supported. - RoleWeight, -} - -/// Defines configuration of the vote. -#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] -#[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] -#[serde(crate = "near_sdk::serde")] -pub struct VotePolicy { - /// Kind of weight to use for votes. - pub weight_kind: WeightKind, - /// Minimum number required for vote to finalize. - /// If weight kind is TokenWeight - this is minimum number of tokens required. - /// This allows to avoid situation where the number of staked tokens from total supply is too small. - /// If RoleWeight - this is minimum number of votes. - /// This allows to avoid situation where the role is got too small but policy kept at 1/2, for example. - pub quorum: U128, - /// How many votes to pass this vote. - pub threshold: WeightOrRatio, -} - -impl Default for VotePolicy { - fn default() -> Self { - VotePolicy { - weight_kind: WeightKind::RoleWeight, - quorum: U128(0), - threshold: WeightOrRatio::Ratio(1, 2), - } - } -} - -/// Defines voting / decision making policy of this DAO. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] #[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] #[serde(crate = "near_sdk::serde")] pub struct Policy { - /// List of roles and permissions for them in the current policy. pub roles: Vec, - /// Default vote policy. Used when given proposal kind doesn't have special policy. pub default_vote_policy: VotePolicy, - /// Proposal bond. pub proposal_bond: U128, - /// Expiration period for proposals. pub proposal_period: U64, - /// Bond for claiming a bounty. pub bounty_bond: U128, - /// Period in which giving up on bounty is not punished. pub bounty_forgiveness_period: U64, } -/// Versioned policy. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] #[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] #[serde(crate = "near_sdk::serde", untagged)] pub enum VersionedPolicy { - /// Default policy with given accounts as council. Default(Vec), Current(Policy), } - -/// Defines default policy: -/// - everyone can add proposals -/// - group consisting of the call can do all actions, consists of caller. -/// - non token weighted voting, requires 1/2 of the group to vote -/// - proposal & bounty bond is 1N -/// - proposal & bounty forgiveness period is 1 day -pub fn default_policy(council: Vec) -> Policy { - Policy { - roles: vec![ - RolePermission { - name: "all".to_string(), - kind: RoleKind::Everyone, - permissions: vec!["*:AddProposal".to_string()].into_iter().collect(), - vote_policy: HashMap::default(), - }, - RolePermission { - name: "council".to_string(), - kind: RoleKind::Group(council.into_iter().collect()), - // All actions except RemoveProposal are allowed by council. - permissions: vec![ - "*:AddProposal".to_string(), - "*:VoteApprove".to_string(), - "*:VoteReject".to_string(), - "*:VoteRemove".to_string(), - "*:Finalize".to_string(), - ] - .into_iter() - .collect(), - vote_policy: HashMap::default(), - }, - ], - default_vote_policy: VotePolicy::default(), - proposal_bond: U128(10u128.pow(24)), - proposal_period: U64::from(1_000_000_000 * 60 * 60 * 24 * 7), - bounty_bond: U128(10u128.pow(24)), - bounty_forgiveness_period: U64::from(1_000_000_000 * 60 * 60 * 24), - } -} - -impl VersionedPolicy { - /// Upgrades either version of policy into the latest. - pub fn upgrade(self) -> Self { - match self { - VersionedPolicy::Default(accounts) => { - VersionedPolicy::Current(default_policy(accounts)) - } - VersionedPolicy::Current(policy) => VersionedPolicy::Current(policy), - } - } - - /// Return recent version of policy. - pub fn to_policy(self) -> Policy { - match self { - VersionedPolicy::Current(policy) => policy, - _ => unimplemented!(), - } - } - - pub fn to_policy_mut(&mut self) -> &mut Policy { - match self { - VersionedPolicy::Current(policy) => policy, - _ => unimplemented!(), - } - } -} diff --git a/src/entrypoints/sputnik/sputnik_types.rs b/src/entrypoints/sputnik/sputnik_types.rs index 75f68b9..bfefb0c 100644 --- a/src/entrypoints/sputnik/sputnik_types.rs +++ b/src/entrypoints/sputnik/sputnik_types.rs @@ -6,19 +6,16 @@ use near_sdk::AccountId; use std::collections::{HashMap, HashSet}; pub type OldAccountId = String; use near_sdk::json_types::Base64VecU8; -use std::cmp::min; use std::fmt; use super::policy::VersionedPolicy; // NOTE: Not everything has to be deserialized - pub type Balance = u128; #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize)] #[serde(crate = "near_sdk::serde")] pub struct ProposalOutput { - /// Id of the proposal. pub id: u64, #[serde(flatten)] pub proposal: Proposal, @@ -28,31 +25,20 @@ pub struct ProposalOutput { #[cfg_attr(not(target_arch = "wasm32"), derive(Debug))] #[serde(crate = "near_sdk::serde")] pub struct Proposal { - /// Original proposer. pub proposer: AccountId, - /// Description of this proposal. pub description: String, - /// Kind of proposal with relevant information. pub kind: ProposalKind, - /// Current status of the proposal. pub status: ProposalStatus, - /// Count of votes per role per decision: yes / no / spam. - pub vote_counts: HashMap, - /// Map of who voted and how. + pub vote_counts: HashMap, pub votes: HashMap, - /// Submission time (for voting period). pub submission_time: U64, } #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone, Debug)] #[serde(crate = "near_sdk::serde")] pub struct Config { - /// Name of the DAO. pub name: String, - /// Purpose of this DAO. pub purpose: String, - /// Generic metadata. Can be used by specific UI to store additional data. - /// This is not used by anything in the contract. pub metadata: Base64VecU8, } @@ -60,62 +46,66 @@ pub struct Config { #[cfg_attr(not(target_arch = "wasm32"), derive(Clone, Debug))] #[serde(crate = "near_sdk::serde")] pub enum ProposalKind { - /// Change the DAO config. - ChangeConfig { config: Config }, - /// Change the full policy. - ChangePolicy { policy: VersionedPolicy }, - /// Add member to given role in the policy. This is short cut to updating the whole policy. - AddMemberToRole { member_id: AccountId, role: String }, - /// Remove member to given role in the policy. This is short cut to updating the whole policy. - RemoveMemberFromRole { member_id: AccountId, role: String }, - /// Calls `receiver_id` with list of method names in a single promise. - /// Allows this contract to execute any arbitrary set of actions in other contracts. + ChangeConfig { + config: Config, + }, + ChangePolicy { + policy: VersionedPolicy, + }, + AddMemberToRole { + member_id: AccountId, + role: String, + }, + RemoveMemberFromRole { + member_id: AccountId, + role: String, + }, FunctionCall { receiver_id: AccountId, actions: Vec, }, - /// Upgrade this contract with given hash from blob store. - UpgradeSelf { hash: Base58CryptoHash }, - /// Upgrade another contract, by calling method with the code from given hash from blob store. + UpgradeSelf { + hash: Base58CryptoHash, + }, UpgradeRemote { receiver_id: AccountId, method_name: String, hash: Base58CryptoHash, }, - /// Transfers given amount of `token_id` from this DAO to `receiver_id`. - /// If `msg` is not None, calls `ft_transfer_call` with given `msg`. Fails if this base token. - /// For `ft_transfer` and `ft_transfer_call` `memo` is the `description` of the proposal. Transfer { - /// Can be "" for $NEAR or a valid account id. token_id: OldAccountId, receiver_id: AccountId, amount: U128, msg: Option, }, - /// Sets staking contract. Can only be proposed if staking contract is not set yet. - SetStakingContract { staking_id: AccountId }, - /// Add new bounty. - AddBounty { bounty: Bounty }, - /// Indicates that given bounty is done by given user. + SetStakingContract { + staking_id: AccountId, + }, + AddBounty { + bounty: Bounty, + }, BountyDone { bounty_id: u64, receiver_id: AccountId, }, - /// Just a signaling vote, with no execution. Vote, - /// Change information about factory and auto update. - FactoryInfoUpdate { factory_info: FactoryInfo }, - /// Add new role to the policy. If the role already exists, update it. This is short cut to updating the whole policy. - ChangePolicyAddOrUpdateRole { role: RolePermission }, - /// Remove role from the policy. This is short cut to updating the whole policy. - ChangePolicyRemoveRole { role: String }, - /// Update the default vote policy from the policy. This is short cut to updating the whole policy. - ChangePolicyUpdateDefaultVotePolicy { vote_policy: VotePolicy }, - /// Update the parameters from the policy. This is short cut to updating the whole policy. - ChangePolicyUpdateParameters { parameters: PolicyParameters }, + FactoryInfoUpdate { + factory_info: FactoryInfo, + }, + ChangePolicyAddOrUpdateRole { + role: RolePermission, + }, + ChangePolicyRemoveRole { + role: String, + }, + ChangePolicyUpdateDefaultVotePolicy { + vote_policy: VotePolicy, + }, + ChangePolicyUpdateParameters { + parameters: PolicyParameters, + }, } -/// Function call arguments. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize)] #[cfg_attr(not(target_arch = "wasm32"), derive(Clone, Debug))] #[serde(crate = "near_sdk::serde")] @@ -126,65 +116,23 @@ pub struct ActionCall { gas: U64, } -impl ProposalKind { - /// Returns label of policy for given type of proposal. - pub fn to_policy_label(&self) -> &str { - match self { - ProposalKind::ChangeConfig { .. } => "config", - ProposalKind::ChangePolicy { .. } => "policy", - ProposalKind::AddMemberToRole { .. } => "add_member_to_role", - ProposalKind::RemoveMemberFromRole { .. } => "remove_member_from_role", - ProposalKind::FunctionCall { .. } => "call", - ProposalKind::UpgradeSelf { .. } => "upgrade_self", - ProposalKind::UpgradeRemote { .. } => "upgrade_remote", - ProposalKind::Transfer { .. } => "transfer", - ProposalKind::SetStakingContract { .. } => "set_vote_token", - ProposalKind::AddBounty { .. } => "add_bounty", - ProposalKind::BountyDone { .. } => "bounty_done", - ProposalKind::Vote => "vote", - ProposalKind::FactoryInfoUpdate { .. } => "factory_info_update", - ProposalKind::ChangePolicyAddOrUpdateRole { .. } => "policy_add_or_update_role", - ProposalKind::ChangePolicyRemoveRole { .. } => "policy_remove_role", - ProposalKind::ChangePolicyUpdateDefaultVotePolicy { .. } => { - "policy_update_default_vote_policy" - } - ProposalKind::ChangePolicyUpdateParameters { .. } => "policy_update_parameters", - } - } -} - -/// Bounty information. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] #[cfg_attr(not(target_arch = "wasm32"), derive(Debug))] #[serde(crate = "near_sdk::serde")] pub struct Bounty { - /// Description of the bounty. pub description: String, - /// Token the bounty will be paid out. - /// Can be "" for $NEAR or a valid account id. pub token: OldAccountId, - /// Amount to be paid out. pub amount: U128, - /// How many times this bounty can be done. pub times: u32, - /// Max deadline from claim that can be spend on this bounty. pub max_deadline: U64, } -/// Defines configuration of the vote. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] #[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] #[serde(crate = "near_sdk::serde")] pub struct VotePolicy { - /// Kind of weight to use for votes. pub weight_kind: WeightKind, - /// Minimum number required for vote to finalize. - /// If weight kind is TokenWeight - this is minimum number of tokens required. - /// This allows to avoid situation where the number of staked tokens from total supply is too small. - /// If RoleWeight - this is minimum number of votes. - /// This allows to avoid situation where the role is got too small but policy kept at 1/2, for example. pub quorum: U128, - /// How many votes to pass this vote. pub threshold: WeightOrRatio, } @@ -198,7 +146,6 @@ impl Default for VotePolicy { } } -/// Direct weight or ratio to total weight, used for the voting policy. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone)] #[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] #[serde(crate = "near_sdk::serde")] @@ -208,31 +155,14 @@ pub enum WeightOrRatio { Ratio(u64, u64), } -impl WeightOrRatio { - /// Convert weight or ratio to specific weight given total weight. - pub fn to_weight(&self, total_weight: Balance) -> Balance { - match self { - WeightOrRatio::Weight(weight) => min(weight.0, total_weight), - WeightOrRatio::Ratio(num, denom) => min( - (*num as u128 * total_weight) / *denom as u128 + 1, - total_weight, - ), - } - } -} - -/// How the voting policy votes get weighted. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone, PartialEq)] #[cfg_attr(not(target_arch = "wasm32"), derive(Debug))] #[serde(crate = "near_sdk::serde")] pub enum WeightKind { - /// Using token amounts and total delegated at the moment. TokenWeight, - /// Weight of the group role. Roles that don't have scoped group are not supported. RoleWeight, } -/// Info about factory that deployed this contract and if auto-update is allowed. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize)] #[cfg_attr(not(target_arch = "wasm32"), derive(Clone, Debug))] #[serde(crate = "near_sdk::serde")] @@ -245,14 +175,9 @@ pub struct FactoryInfo { #[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] #[serde(crate = "near_sdk::serde")] pub struct RolePermission { - /// Name of the role to display to the user. pub name: String, - /// Kind of the role: defines which users this permissions apply. pub kind: RoleKind, - /// Set of actions on which proposals that this role is allowed to execute. - /// : pub permissions: HashSet, - /// For each proposal kind, defines voting policy. pub vote_policy: HashMap, } @@ -260,40 +185,20 @@ pub struct RolePermission { #[cfg_attr(not(target_arch = "wasm32"), derive(Debug, PartialEq))] #[serde(crate = "near_sdk::serde")] pub enum RoleKind { - /// Matches everyone, who is not matched by other roles. Everyone, - /// Member greater or equal than given balance. Can use `1` as non-zero balance. Member(U128), - /// Set of accounts. Group(HashSet), } -impl RoleKind { - /// Returns the number of people in the this role or None if not supported role kind. - pub fn get_role_size(&self) -> Option { - match self { - RoleKind::Group(accounts) => Some(accounts.len()), - _ => None, - } - } -} - #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone, PartialEq, Debug)] #[serde(crate = "near_sdk::serde")] pub enum ProposalStatus { InProgress, - /// If quorum voted yes, this proposal is successfully approved. Approved, - /// If quorum voted no, this proposal is rejected. Bond is returned. Rejected, - /// If quorum voted to remove (e.g. spam), this proposal is rejected and bond is not returned. - /// Interfaces shouldn't show removed proposals. Removed, - /// Expired after period of time. Expired, - /// If proposal was moved to Hub or somewhere else. Moved, - /// If proposal has failed when finalizing. Allowed to re-finalize again to either expire or approved. Failed, } @@ -311,7 +216,6 @@ impl fmt::Display for ProposalStatus { } } -/// Votes recorded in the proposal. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Clone, Debug)] #[serde(crate = "near_sdk::serde")] #[borsh(use_discriminant = true)] @@ -332,34 +236,18 @@ impl From for Vote { } } -/// Set of possible action to take. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Debug)] #[serde(crate = "near_sdk::serde")] pub enum Action { - /// Action to add proposal. Used internally. AddProposal, - /// Action to remove given proposal. Used for immediate deletion in special cases. RemoveProposal, - /// Vote to approve given proposal or bounty. VoteApprove, - /// Vote to reject given proposal or bounty. VoteReject, - /// Vote to remove given proposal or bounty (because it's spam). VoteRemove, - /// Finalize proposal, called when it's expired to return the funds - /// (or in the future can be used for early proposal closure). Finalize, - /// Move a proposal to the hub to shift into another DAO. MoveToHub, } -impl Action { - pub fn to_policy_label(&self) -> String { - format!("{:?}", self) - } -} - -/// Function call arguments. #[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize)] #[cfg_attr(not(target_arch = "wasm32"), derive(Clone, Debug))] #[serde(crate = "near_sdk::serde")] diff --git a/src/main.rs b/src/main.rs index 0986016..22154f0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -36,6 +36,8 @@ use types::Contract; use utoipa::OpenApi; use utoipa_swagger_ui::SwaggerUi; +#[cfg(test)] +mod sputnik_tests; #[cfg(test)] mod tests; diff --git a/src/nearblocks_client/sputnik.rs b/src/nearblocks_client/sputnik.rs index 6bd58ce..150f0af 100644 --- a/src/nearblocks_client/sputnik.rs +++ b/src/nearblocks_client/sputnik.rs @@ -1,15 +1,19 @@ +use super::types::BLOCK_HEIGHT_OFFSET; use crate::db::db_types::SputnikProposalSnapshotRecord; use crate::db::DB; -use crate::entrypoints::sputnik::sputnik_types::{Action, ProposalKind}; +use crate::entrypoints::sputnik::sputnik_types::{ + Action, Proposal, ProposalKind, ProposalOutput, ProposalStatus, +}; use crate::nearblocks_client::types::Transaction; -use crate::rpc_service::RpcService; // BLOCK_HEIGHT_OFFSET +use crate::rpc_service::RpcService; use near_account_id::AccountId; +use near_sdk::json_types::U64; use regex::Regex; use rocket::{http::Status, State}; use serde::{Deserialize, Serialize}; use serde_json::Value; - -use super::types::BLOCK_HEIGHT_OFFSET; +use std::collections::HashMap; +use std::str::FromStr; #[derive(Serialize, Deserialize, Clone, Debug)] pub struct AddProposalArgs { @@ -22,7 +26,7 @@ pub struct ProposalInput { pub kind: ProposalKind, } -#[derive(Serialize, Deserialize)] // Clone +#[derive(Serialize, Deserialize, Debug)] // Clone pub struct ActProposalArgs { pub id: i64, pub action: Action, @@ -30,10 +34,7 @@ pub struct ActProposalArgs { } fn parse_key_to_readable_format(key: &str) -> String { - // Replace underscores with spaces let key = key.replace('_', " "); - - // Add spaces between camelCase or PascalCase words let re = Regex::new(r"([a-z])([A-Z])").unwrap(); let key = re.replace_all(&key, "$1 $2"); @@ -50,30 +51,38 @@ fn parse_key_to_readable_format(key: &str) -> String { .join(" ") } -fn decode_proposal_description(key: &str, description: &str) -> String { +fn decode_proposal_description(description: &str) -> String { // Try to parse as JSON if let Ok(parsed_data) = serde_json::from_str::(description) { - if let Some(value) = parsed_data.get(key) { - return value.as_str().unwrap_or("parsed error 1.").to_string(); + if let Some(value) = parsed_data.get("proposal_action") { + return value.to_string(); + } + if let Some(value) = parsed_data.get("isStakeRequest") { + println!("isStakeRequest: {:?}", value); + // Bool(true) + return value.to_string(); } } // Handle as markdown - let markdown_key = parse_key_to_readable_format(key); - let re = Regex::new(r"^\* (.+): (.+)$").unwrap(); - - for line in description.split("
") { - if let Some(captures) = re.captures(line) { - let current_key = captures.get(1).map_or("", |m| m.as_str()); - let value = captures.get(2).map_or("", |m| m.as_str()); - - if current_key == markdown_key { - return value.trim().to_string(); + let keys = ["proposal_action", "isStakeRequest"]; + for key in &keys { + let markdown_key = parse_key_to_readable_format(key); + let re = Regex::new(r"^\* (.+): (.+)$").unwrap(); + + for line in description.split("
") { + if let Some(captures) = re.captures(line) { + let current_key = captures.get(1).map_or("", |m| m.as_str()); + let value = captures.get(2).map_or("", |m| m.as_str()); + + if current_key == markdown_key { + return value.trim().to_string(); + } } } } - "key not found".to_string() // Return None if key not found + "null".to_string() } pub async fn handle_add_proposal( @@ -82,30 +91,52 @@ pub async fn handle_add_proposal( contract: &AccountId, ) -> Result<(), Status> { let rpc_service = RpcService::new(contract); - - // get last proposal id - let last_proposal_id = match rpc_service - .get_last_dao_proposal_id_on_block( - transaction.receipt_block.block_height + BLOCK_HEIGHT_OFFSET, - ) + /* + get_last_proposal_id actually returns the number of proposals starting from 0. + https://github.com/near-daos/sputnik-dao-contract/blob/3d568f9517a8c7a6510786d978bb25b180501841/sputnikdao2/src/proposals.rs#L532 + */ + let proposal_id = match rpc_service + .get_last_proposal_id_on_block(transaction.receipt_block.block_height + BLOCK_HEIGHT_OFFSET) .await { - Ok(last_proposal_id) => last_proposal_id.data - 1, // TODO TEST + Ok(last_proposal_id) => last_proposal_id.data - 1, Err(e) => { eprintln!("Failed to get last dao proposal id on block: {:?}", e); return Err(Status::InternalServerError); } }; - println!("Last proposal id: {}", last_proposal_id); + println!("Last proposal id: {}", proposal_id); - // TODO either check get the last dao proposal id on block or just add 1 to the id. - // on block => BLOCK_HEIGHT_OFFSET ? - // let proposal_id = last_proposal_id + 1; + let add_proposal_action = transaction + .actions + .as_ref() + .and_then(|actions| actions.first()) + .ok_or(Status::InternalServerError)?; + let add_proposal_args: AddProposalArgs = serde_json::from_str( + add_proposal_action + .args + .as_ref() + .unwrap_or(&String::default()), + ) + .unwrap(); + + let proposal_output = ProposalOutput { + id: proposal_id.try_into().unwrap(), + proposal: Proposal { + proposer: AccountId::from_str(transaction.predecessor_account_id.as_str()).unwrap(), + description: add_proposal_args.proposal.description, + kind: add_proposal_args.proposal.kind, + status: ProposalStatus::Removed, + vote_counts: HashMap::new(), + votes: HashMap::new(), + submission_time: U64::from(transaction.receipt_block.block_height as u64), + }, + }; let daop = match rpc_service .get_dao_proposal_on_block( - last_proposal_id, + proposal_id, transaction.receipt_block.block_height + BLOCK_HEIGHT_OFFSET, ) .await @@ -116,18 +147,15 @@ pub async fn handle_add_proposal( "Failed to get dao proposal on block: {:?}, block_height: {}", e, transaction.receipt_block.block_height ); - println!( - "Skipping proposal, probably deleted, id:{}", - last_proposal_id - ); - return Ok(()); + println!("Skipping proposal, probably deleted, id: {}", proposal_id); + proposal_output } }; println!("Proposal: {:?}", daop.id); println!("Proposal description: {:?}", daop.proposal.description); - let proposal_action = decode_proposal_description("isStakeRequest", &daop.proposal.description); // TODO check v1 isStakeRequest as well + let proposal_action = decode_proposal_description(&daop.proposal.description); println!("Proposal action: {}", proposal_action); let mut tx = db.begin().await.map_err(|e| { @@ -135,15 +163,30 @@ pub async fn handle_add_proposal( Status::InternalServerError })?; + let kind = serde_json::to_value(daop.proposal.kind).unwrap_or_else(|e| { + eprintln!("Failed to serialize proposal kind: {:?}", e); + serde_json::Value::Null + }); + + let vote_counts = serde_json::to_value(daop.proposal.vote_counts).unwrap_or_else(|e| { + eprintln!("Failed to serialize vote counts: {:?}", e); + serde_json::Value::Null + }); + + let votes = serde_json::to_value(&daop.proposal.votes).unwrap_or_else(|e| { + eprintln!("Failed to serialize votes: {:?}", e); + serde_json::Value::Null + }); + let record = SputnikProposalSnapshotRecord { description: daop.proposal.description, - id: daop.id.try_into().unwrap(), - kind: serde_json::to_value(daop.proposal.kind).unwrap(), + id: daop.id as i32, + kind, proposer: daop.proposal.proposer.to_string(), status: daop.proposal.status.to_string(), submission_time: daop.proposal.submission_time.0 as i64, - vote_counts: serde_json::to_value(daop.proposal.vote_counts).unwrap(), - votes: serde_json::to_value(&daop.proposal.votes).unwrap(), + vote_counts, + votes, total_votes: daop.proposal.votes.len() as i32, dao_instance: contract.to_string(), proposal_action, @@ -151,7 +194,7 @@ pub async fn handle_add_proposal( hash: transaction.transaction_hash, }; - println!("Inserting proposal snapshot {:?}", record); + // println!("Inserting proposal snapshot {:?}", record); DB::upsert_dao_proposal_snapshot(&mut tx, record) .await .map_err(|e| { @@ -169,7 +212,6 @@ pub async fn handle_add_proposal( Ok(()) } -// TODO: instead of arguments parsing get the updated version of the proposal from the contract via the RPC pub async fn handle_act_proposal( transaction: Transaction, db: &State, @@ -186,7 +228,6 @@ pub async fn handle_act_proposal( let args: ActProposalArgs = serde_json::from_str(&json_args.unwrap_or_default()).unwrap(); let proposal_id = args.id; - // let action = args.action; let rpc_service = RpcService::new(contract); @@ -199,36 +240,67 @@ pub async fn handle_act_proposal( { Ok(dao_proposal) => dao_proposal, Err(e) => { - eprintln!("Failed to get dao proposal: {:?}", e); - // TODO - println!("Skipping proposal {:?}", proposal_id); - return Ok(()); + eprintln!( + "Failed to get proposal in act_proposal with id: {}, {:?}", + proposal_id, e + ); + return Err(Status::InternalServerError); } }; - let proposal_action = - decode_proposal_description("proposal_action", &dao_proposal.proposal.description); // TODO check v1 isStakeRequest as well + println!("act_proposal proposal: {:?}", dao_proposal.id); + println!( + "act_proposal proposal description: {:?}", + dao_proposal.proposal.description + ); + + println!( + "act_proposal proposal vote_counts: {:?}", + dao_proposal.proposal.vote_counts + ); + println!( + "act_proposal proposal votes: {:?}", + dao_proposal.proposal.votes + ); + + let proposal_action = decode_proposal_description(&dao_proposal.proposal.description); let mut tx = db.begin().await.map_err(|e| { eprintln!("Failed to begin transaction: {:?}", e); Status::InternalServerError })?; + let kind = serde_json::to_value(dao_proposal.proposal.kind).unwrap_or_else(|e| { + eprintln!("Failed to serialize proposal kind: {:?}", e); + serde_json::Value::Null // Fallback value + }); + + let vote_counts = serde_json::to_value(dao_proposal.proposal.vote_counts).unwrap_or_else(|e| { + eprintln!("Failed to serialize vote counts: {:?}", e); + serde_json::Value::Null // Fallback value + }); + + let votes = serde_json::to_value(&dao_proposal.proposal.votes).unwrap_or_else(|e| { + eprintln!("Failed to serialize votes: {:?}", e); + serde_json::Value::Null // Fallback value + }); DB::upsert_dao_proposal_snapshot( &mut tx, SputnikProposalSnapshotRecord { description: dao_proposal.proposal.description, id: dao_proposal.id.try_into().unwrap(), - kind: serde_json::to_value(dao_proposal.proposal.kind).unwrap(), + kind, proposer: dao_proposal.proposal.proposer.to_string(), status: dao_proposal.proposal.status.to_string(), submission_time: dao_proposal.proposal.submission_time.0 as i64, - vote_counts: serde_json::to_value(dao_proposal.proposal.vote_counts).unwrap(), - votes: serde_json::to_value(&dao_proposal.proposal.votes).unwrap(), + vote_counts, + votes, total_votes: dao_proposal.proposal.votes.len() as i32, dao_instance: contract.to_string(), proposal_action, + // Update the timestamp to the latest transaction timestamp tx_timestamp: transaction.block_timestamp.parse::().unwrap(), + // Update the hash to the latest transaction hash hash: transaction.transaction_hash, }, ) @@ -238,5 +310,44 @@ pub async fn handle_act_proposal( Status::InternalServerError })?; + tx.commit().await.map_err(|e| { + eprintln!("Failed to commit transaction: {:?}", e); + Status::InternalServerError + })?; + Ok(()) } + +#[cfg(test)] +mod tests { + use super::*; + + #[tokio::test] + async fn test_decode_proposal_description() { + let descriptions = [ + "{\"isStakeRequest\":true,\"warningNotes\":\"Approve to continue staking with this validator\"}", + "* Proposal Action: withdraw
* Show After Proposal Id Approved: 61
* Custom Notes: Following to [#61](/treasury-testing-infinex.near/widget/app?page=stake-delegation&selectedTab=History&highlightProposalId=61) unstake request", + "{\"title\":\"DevHub Developer Contributor report by Megha for 09/09/2024 - 10/06/2024\",\"summary\":\"Worked on integrating new features to treasury dashboard, like asset exchange using the ref-sdk API, stake delegation, made first version live for devhub, fixed some bugs with devhub and other instances.\",\"notes\":\"Treasury balance insufficient\",\"proposalId\":220}", + "Change policy", + "{}", + "* Proposal Action: stake
* Custom Notes: Approve to continue staking with this validator", + "* Proposal Action: unstake
* Notes: Unstake 0.5N", + "* Proposal Action: stake", + "* Proposal Action: withdraw
* Show After Proposal Id Approved: 58
* Custom Notes: Following to [#58](/treasury-testing-infinex.near/widget/app?page=stake-delegation&selectedTab=History&highlightProposalId=58) unstake request" + ]; + + let expected_results = [ + "true", "withdraw", "null", "null", "null", "stake", "unstake", "stake", "withdraw", + ]; + + for (i, description) in descriptions.iter().enumerate() { + let result = decode_proposal_description(description); + + assert_eq!( + result, expected_results[i], + "expected: {} got: {}", + expected_results[i], result + ); + } + } +} diff --git a/src/nearblocks_client/transactions.rs b/src/nearblocks_client/transactions.rs index 53e65c0..67a5727 100644 --- a/src/nearblocks_client/transactions.rs +++ b/src/nearblocks_client/transactions.rs @@ -15,15 +15,6 @@ async fn fetch_all_new_transactions( let mut all_transactions = Vec::new(); let mut current_cursor = "".to_string(); - // TODO remove - // if contract == "testing-astradao.sputnik-dao.near" { - // // Read from file - // let file_path = format!("transactions_{}.json", contract.to_string()); - // let json_data = std::fs::read_to_string(file_path).unwrap(); - // let transactions: Vec = serde_json::from_str(&json_data).unwrap(); - // return (transactions.into_iter().rev().collect(), "None".to_string()); - // } - loop { let response = match nearblocks_client .get_account_txns_by_pagination( @@ -49,7 +40,11 @@ async fn fetch_all_new_transactions( ); // Check if we've wrapped around or reached the end - if response.cursor.is_none() || contract == "testing-astradao.sputnik-dao.near" { + // TODO 157 Remove behind the || operator + if response.cursor.is_none() + // || (contract == "testing-astradao.sputnik-dao.near" + // && all_transactions.len() + response.txns.len() >= 50) + { println!("Cursor has wrapped around, finished fetching transactions"); all_transactions.extend(response.txns); current_cursor = "None".to_string(); @@ -59,11 +54,6 @@ async fn fetch_all_new_transactions( // Add transactions to our collection all_transactions.extend(response.txns); - // For testing purposes write to a json file - // let file_path = format!("transactions_{}.json", contract.to_string()); - // let json_data = serde_json::to_string(&all_transactions).unwrap(); - // std::fs::write(file_path, json_data).unwrap(); - // Update cursor for next iteration current_cursor = response.cursor.unwrap(); } @@ -150,16 +140,14 @@ pub async fn process_dao_transactions( continue; } let result = match action.method.as_deref().unwrap_or("") { - // TODO can't reuse this because the other contract has a function with the same name "add_proposal" => { println!("add_proposal"); handle_add_proposal(transaction.to_owned(), db, contract).await } - // TODO: Uncomment this - // "act_proposal" => { - // println!("act_proposal"); - // handle_act_proposal(transaction.to_owned(), db, contract).await - // } + "act_proposal" => { + println!("act_proposal"); + handle_act_proposal(transaction.to_owned(), db, contract).await + } _ => { if action.action == "FUNCTION_CALL" { println!("Unhandled method: {:?}", action.method.as_ref().unwrap()); diff --git a/src/rpc_service.rs b/src/rpc_service.rs index bec2f63..12b8278 100644 --- a/src/rpc_service.rs +++ b/src/rpc_service.rs @@ -1,18 +1,13 @@ -use std::{collections::HashMap, str::FromStr}; - +use crate::entrypoints::sputnik::sputnik_types::ProposalOutput; use devhub_shared::proposal::VersionedProposal; use devhub_shared::rfp::VersionedRFP; use near_account_id::AccountId; use near_api::{prelude::*, types::reference::Reference, types::Data}; use near_jsonrpc_client::methods::query::RpcQueryRequest; -use near_sdk::json_types::U64; use rocket::http::Status; use rocket::serde::json::json; use serde::Deserialize; - -use crate::entrypoints::sputnik::sputnik_types::{ - Proposal, ProposalKind, ProposalOutput, ProposalStatus, -}; +use serde_json::Value; #[derive(Deserialize)] pub struct RpcResponse { @@ -198,45 +193,52 @@ impl RpcService { proposal_id: i64, block_id: i64, ) -> Result { - let result: Result, near_api::errors::QueryError> = - self.contract - .call_function("get_proposal", json!({ "id": proposal_id })) - .unwrap() - .read_only() - .at(Reference::AtBlock(block_id as u64)) - .fetch_from(&self.network) - .await; + let result: Result, near_api::errors::QueryError> = self + .contract + .call_function("get_proposal", json!({ "id": proposal_id })) + .unwrap() + .read_only() + .at(Reference::AtBlock(block_id as u64)) + .fetch_from(&self.network) + .await; + + // let result: Result, _> = + // serde_json::from_value::>(value.unwrap().data).unwrap(); match result { - Ok(res) => Ok(res.data), - Err(on_block_error) => match self.get_dao_proposal(proposal_id).await { - Ok(proposal) => Ok(proposal.data), - Err(rpc_error) => { - eprintln!("Block error {:?}", on_block_error); - eprintln!( - "Failed get_dao_proposal_on_block from RPC on block height {} and id {}", - block_id, proposal_id, - ); - eprintln!("RPC error {:?}", rpc_error); + Ok(raw_json) => { + // eprintln!("Raw JSON response: {:?}", raw_json); - // TODO issue 1018 - Ok(ProposalOutput { - id: proposal_id.try_into().unwrap(), - proposal: Proposal { - proposer: AccountId::from_str("deleted.near").unwrap(), - description: "".to_string(), - kind: ProposalKind::FunctionCall { - receiver_id: AccountId::from_str("deleted.near").unwrap(), - actions: vec![], - }, - status: ProposalStatus::Removed, - vote_counts: HashMap::new(), - votes: HashMap::new(), - submission_time: U64::from(0), - }, - }) + match serde_json::from_value::(raw_json.data) { + Ok(output) => Ok(output), + Err(e) => { + eprintln!("Deserialization error: {:?}", e); + Err(Status::InternalServerError) + } } - }, + } + Err(on_block_error) => { + eprintln!("get_dao_proposal_on_block with id: {:?}", proposal_id); + eprintln!("Failed to get dao proposal on block: {:?}", on_block_error); + + // TODO 157 do we need a fallback here or just a status? + Err(Status::InternalServerError) + // Ok(ProposalOutput { + // id: proposal_id.try_into().unwrap(), + // proposal: Proposal { + // proposer: AccountId::from_str("deleted.near").unwrap(), + // description: "deleted".to_string(), + // kind: ProposalKind::FunctionCall { + // receiver_id: AccountId::from_str("deleted.near").unwrap(), + // actions: vec![], + // }, + // status: ProposalStatus::Removed, + // vote_counts: HashMap::new(), + // votes: HashMap::new(), + // submission_time: U64::from(block_id as u64), + // }, + // }) + } } } @@ -275,7 +277,7 @@ impl RpcService { } } - pub async fn get_last_dao_proposal_id_on_block( + pub async fn get_last_proposal_id_on_block( &self, block_id: i64, ) -> Result, near_api::errors::QueryError> { diff --git a/src/sputnik_tests.rs b/src/sputnik_tests.rs new file mode 100644 index 0000000..23d6c06 --- /dev/null +++ b/src/sputnik_tests.rs @@ -0,0 +1,245 @@ +use futures::future::join_all; +use near_api::prelude::Contract; + +use crate::{db::db_types::SputnikProposalSnapshotRecord, types::PaginatedResponse, Env}; +use crate::{separate_number_and_text, timestamp_to_date_string}; +use near_sdk::AccountId; +use serde_json::{json, Value}; + +#[rocket::async_test] +async fn test_get_dao_proposals() { + use rocket::local::asynchronous::Client; + + let client = Client::tracked(super::rocket()) + .await + .expect("valid `Rocket`"); + + let response = client + .get("/dao/proposals/testing-treasury.sputnik-dao.near") + .dispatch(); + let result = response + .await + .into_json::>() + .await + .unwrap(); + + assert_eq!(result.records.len(), 50); +} + +#[rocket::async_test] +async fn test_get_dao_proposals_limit_and_offset() { + use rocket::local::asynchronous::Client; + + let client = Client::tracked(super::rocket()) + .await + .expect("valid `Rocket`"); + + let offset = 10; + let response = client + .get(format!( + "/dao/proposals/testing-treasury.sputnik-dao.near?limit=10&offset={}&order=id_asc", + offset + )) + .dispatch(); + let result = response + .await + .into_json::>() + .await + .unwrap(); + + assert_eq!(result.records.len(), 10); + + assert_eq!( + result.records[0].id, offset, + "If offset is {}, the first proposal should have the id {}", + offset, offset + ); +} + +#[rocket::async_test] +async fn test_get_dao_proposals_order() { + use rocket::local::asynchronous::Client; + + let client = Client::tracked(super::rocket()) + .await + .expect("valid `Rocket`"); + + let response = client + .get("/dao/proposals/testing-treasury.sputnik-dao.near?order=id_asc") + .dispatch(); + let result = response + .await + .into_json::>() + .await + .unwrap(); + + assert_eq!( + result.records[0].id, 0, + " If order is id_asc, the first proposal should have the lowest id which is 0" + ); + + assert_eq!( + result.records.len(), + 10, + "If the limit is not set, the default limit should be 10" + ); + + let response = client + .get("/dao/proposals/testing-treasury.sputnik-dao.near?order=id_desc") + .dispatch(); + let result = response + .await + .into_json::>() + .await + .unwrap(); + + assert_eq!( + result.records[0].id , result.total_records as i32 - 1, + "If order is id_desc, the first proposal with id {:?} should be the same as total records minus 1 {:?}", + result.records[0].id, result.total_records - 1 + ); + + // From RPC get all proposal ids + // let account_id = "testing-treasury.sputnik-dao.near".parse().unwrap(); + // let contract = Contract(account_id); + // let call_function_builder = contract.call_function("get_proposals", ()).unwrap(); + // let proposal_ids: Value = call_function_builder + // .read_only() + // .fetch_from_mainnet() + // .await + // .unwrap() + // .data; + // let proposal_ids: Vec = proposal_ids + // .as_array() + // .unwrap() + // .iter() + // .map(|p| p.as_i64().unwrap() as i32) + // .collect(); + + // assert_eq!( + // proposal_ids, + // result.records.iter().map(|p| p.id).collect::>() + // ); +} + +#[rocket::async_test] +async fn test_get_dao_proposals_filters() { + use rocket::local::asynchronous::Client; + + let client = Client::tracked(super::rocket()) + .await + .expect("valid `Rocket`"); + + // test filters + let kind = "ChangePolicy"; + let status = "Pending"; + let total_votes = 2; + let proposer = "testing-treasury.sputnik-dao.near"; + + // Test Number of Votes + let response = client + .get(format!( + "/dao/proposals/testing-treasury.sputnik-dao.near?total_votes={}", + total_votes + )) + .dispatch(); + + let result = response + .await + .into_json::>() + .await + .unwrap(); + + assert!( + result.records.len() > 1, + "Expected more than 1 record, found {} for total votes {}", + result.records.len(), + total_votes + ); + + result.records.iter().for_each(|p| { + assert_eq!( + p.total_votes, total_votes, + "Total votes should be {} but is {}", + total_votes, p.total_votes + ); + }); + + // Test Status + let response = client + .get(format!( + "/dao/proposals/testing-treasury.sputnik-dao.near?status={}", + status + )) + .dispatch(); + + let result = response + .await + .into_json::>() + .await + .unwrap(); + + assert!( + result.records.len() > 1, + "Expected more than 1 record, found {} for status {}", + result.records.len(), + status + ); + result.records.iter().for_each(|p| { + assert_eq!( + p.status, status, + "Status should be {} but is {}", + status, p.status + ); + }); + + // Test Kind + let response = client + .get(format!( + "/dao/proposals/testing-treasury.sputnik-dao.near?kind={}", + kind + )) + .dispatch(); + let result = response + .await + .into_json::>() + .await + .unwrap(); + + assert!( + result.records.len() > 1, + "Expected more than 1 record, found {} for kind {}", + result.records.len(), + kind + ); + result.records.iter().for_each(|p| { + assert_eq!(p.kind, kind, "Kind should be {} but is {}", kind, p.kind); + }); + + // Test Proposer + let response = client + .get(format!( + "/dao/proposals/testing-treasury.sputnik-dao.near?proposer={}", + proposer + )) + .dispatch(); + let result = response + .await + .into_json::>() + .await + .unwrap(); + + assert!( + result.records.len() > 1, + "Expected more than 1 record, found {} for proposer {}", + result.records.len(), + proposer + ); + result.records.iter().for_each(|p| { + assert_eq!( + p.proposer, proposer, + "Proposer should be {} but is {}", + proposer, p.proposer + ); + }); +} diff --git a/src/tests.rs b/src/tests.rs index b4092a6..72f5d20 100644 --- a/src/tests.rs +++ b/src/tests.rs @@ -6,19 +6,6 @@ use crate::{separate_number_and_text, timestamp_to_date_string}; use near_sdk::AccountId; use serde_json::{json, Value}; -/** - * Test Nearblocks mocked transactions - */ - -/** - * Search Proposals - * Get Proposals - * Get Proposal Snapshots - * Search RFPs - * Get RFPs - * Get RFP Snapshots - */ - #[rocket::async_test] async fn test_proposal_ids_are_continuous_and_name_and_status_matches() { use rocket::local::asynchronous::Client;